mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
814c67ace8
By: md_5 <git@md-5.net>
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
--- a/net/minecraft/network/NetworkManager.java
|
|
+++ b/net/minecraft/network/NetworkManager.java
|
|
@@ -84,6 +84,7 @@
|
|
private float averageSentPackets;
|
|
private int tickCount;
|
|
private boolean handlingFault;
|
|
+ public String hostname = ""; // CraftBukkit - add field
|
|
|
|
public NetworkManager(EnumProtocolDirection enumprotocoldirection) {
|
|
this.receiving = enumprotocoldirection;
|
|
@@ -164,7 +165,7 @@
|
|
}
|
|
|
|
private static <T extends PacketListener> void genericsFtw(Packet<T> packet, PacketListener packetlistener) {
|
|
- packet.handle(packetlistener);
|
|
+ packet.handle((T) packetlistener); // CraftBukkit - decompile error
|
|
}
|
|
|
|
public void setListener(PacketListener packetlistener) {
|
|
@@ -289,7 +290,7 @@
|
|
|
|
public void disconnect(IChatBaseComponent ichatbasecomponent) {
|
|
if (this.channel.isOpen()) {
|
|
- this.channel.close().awaitUninterruptibly();
|
|
+ this.channel.close(); // We can't wait as this may be called from an event loop.
|
|
this.disconnectedReason = ichatbasecomponent;
|
|
}
|
|
|