3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 13:00:06 +01:00
Paper/nms-patches/NetworkManager.patch

30 Zeilen
1.2 KiB
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/NetworkManager.java
+++ b/net/minecraft/server/NetworkManager.java
2016-02-29 22:32:46 +01:00
@@ -113,7 +113,7 @@
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) {
;
}
@@ -232,7 +232,7 @@
public void close(IChatBaseComponent ichatbasecomponent) {
2015-05-05 22:43:47 +02: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 23:41:06 +01:00
this.n = ichatbasecomponent;
}
2016-02-29 22:32:46 +01:00
@@ -309,7 +309,7 @@
}
2015-02-26 23:41:06 +01: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);
}