mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
--- a/net/minecraft/server/NetworkManager.java
|
|
+++ b/net/minecraft/server/NetworkManager.java
|
|
@@ -114,7 +114,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) {
|
|
;
|
|
}
|
|
@@ -236,7 +236,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;
|
|
}
|
|
|
|
@@ -313,7 +313,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);
|
|
}
|
|
|