2015-05-25 20:37:24 +10:00
|
|
|
--- a/net/minecraft/server/NetworkManager.java
|
|
|
|
+++ b/net/minecraft/server/NetworkManager.java
|
2016-05-10 21:47:39 +10:00
|
|
|
@@ -114,7 +114,7 @@
|
2016-03-01 08:32:46 +11:00
|
|
|
protected void a(ChannelHandlerContext channelhandlercontext, Packet<?> packet) throws Exception {
|
|
|
|
if (this.channel.isOpen()) {
|
|
|
|
try {
|
|
|
|
- packet.a(this.m);
|
|
|
|
+ ((Packet) packet).a(this.m); // CraftBukkit - decompile error
|
|
|
|
} catch (CancelledPacketHandleException cancelledpackethandleexception) {
|
|
|
|
;
|
|
|
|
}
|
2017-05-14 12:00:00 +10:00
|
|
|
@@ -236,7 +236,7 @@
|
2014-11-26 08:32:16 +11:00
|
|
|
|
|
|
|
public void close(IChatBaseComponent ichatbasecomponent) {
|
2015-05-05 21:43:47 +01:00
|
|
|
if (this.channel.isOpen()) {
|
|
|
|
- this.channel.close().awaitUninterruptibly();
|
|
|
|
+ this.channel.close(); // We can't wait as this may be called from an event loop.
|
2015-02-26 22:41:06 +00:00
|
|
|
this.n = ichatbasecomponent;
|
|
|
|
}
|
|
|
|
|
2017-06-08 18:00:00 +10:00
|
|
|
@@ -313,7 +313,7 @@
|
2014-11-26 08:32:16 +11:00
|
|
|
}
|
2015-02-26 22:41:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- protected void channelRead0(ChannelHandlerContext channelhandlercontext, Object object) throws Exception {
|
|
|
|
+ protected void channelRead0(ChannelHandlerContext channelhandlercontext, Packet object) throws Exception { // CraftBukkit - fix decompile error
|
|
|
|
this.a(channelhandlercontext, (Packet) object);
|
|
|
|
}
|
2014-11-26 08:32:16 +11:00
|
|
|
|