Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
20
paper-server/nms-patches/NetworkManager.patch
Normal file
20
paper-server/nms-patches/NetworkManager.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
--- ../work/decompile-bb26c12b/net/minecraft/server/NetworkManager.java 2014-11-27 08:59:46.809421371 +1100
|
||||
+++ src/main/java/net/minecraft/server/NetworkManager.java 2014-11-27 08:42:10.120850973 +1100
|
||||
@@ -41,7 +41,7 @@
|
||||
this.g = enumprotocoldirection;
|
||||
}
|
||||
|
||||
- public void channelActive(ChannelHandlerContext channelhandlercontext) {
|
||||
+ public void channelActive(ChannelHandlerContext channelhandlercontext) throws Exception { // CraftBukkit - added throws
|
||||
super.channelActive(channelhandlercontext);
|
||||
this.i = channelhandlercontext.channel();
|
||||
this.j = this.i.remoteAddress();
|
||||
@@ -159,7 +159,7 @@
|
||||
|
||||
public void close(IChatBaseComponent ichatbasecomponent) {
|
||||
if (this.i.isOpen()) {
|
||||
- this.i.close().awaitUninterruptibly();
|
||||
+ this.i.close(); // We can't wait as this may be called from an event loop.
|
||||
this.l = ichatbasecomponent;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user