summaryrefslogtreecommitdiffstats
path: root/nms-patches/NetworkManager.patch
blob: 5caf383c92cf33aa5a4c6e3e625aea70c3b560d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- a/net/minecraft/server/NetworkManager.java
+++ b/net/minecraft/server/NetworkManager.java
@@ -103,7 +103,7 @@
                     if (flag) {
                         NetworkManager.g.debug("Failed to sent packet", throwable);
                         this.sendPacket(new PacketPlayOutKickDisconnect(chatmessage), (future) -> {
-                            this.close(ichatbasecomponent);
+                            this.close(chatmessage); // CraftBukkit - decompile error
                         });
                         this.stopReading();
                     } else {
@@ -130,7 +130,7 @@
     }
 
     private static <T extends PacketListener> void a(Packet<T> packet, PacketListener packetlistener) {
-        packet.a(packetlistener);
+        packet.a((T) packetlistener); // CraftBukkit - decompile error
     }
 
     public void setPacketListener(PacketListener packetlistener) {
@@ -241,7 +241,7 @@
 
     public void close(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.n = ichatbasecomponent;
         }
 
@@ -319,7 +319,7 @@
         }
     }
 
-    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);
     }