Update to Minecraft 1.15.2

This commit is contained in:
md_5
2020-01-22 08:00:00 +11:00
parent 5c6b0dc6e4
commit 6881a10803
50 changed files with 293 additions and 421 deletions

View File

@@ -11,9 +11,9 @@
+ // CraftBukkit start
+ public void acceptConnections() {
+ synchronized (this.f) { // PAIL: listeningChannels
+ for (ChannelFuture f : this.f) {
+ f.channel().config().setAutoRead(true);
+ synchronized (this.listeningChannels) {
+ for (ChannelFuture future : this.listeningChannels) {
+ future.channel().config().setAutoRead(true);
+ }
+ }
+ }
@@ -21,4 +21,4 @@
+
public void b() {
this.c = false;
Iterator iterator = this.f.iterator();
Iterator iterator = this.listeningChannels.iterator();