Properly fix item duplication bug
Credit to prplz for figuring out the real issue
This commit is contained in:
@ -1477,7 +1477,7 @@
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean isImmobile() {
|
||||
+ return super.isImmobile() || !this.getBukkitEntity().isOnline();
|
||||
+ return super.isImmobile() || (this.connection != null && this.connection.isDisconnected()); // Paper - Fix duplication bugs
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
|
||||
@ -167,7 +167,7 @@
|
||||
+ }
|
||||
+
|
||||
+ public final boolean isDisconnected() {
|
||||
+ return !this.player.joining && !this.connection.isConnected();
|
||||
+ return (!this.player.joining && !this.connection.isConnected()) || this.processedDisconnect; // Paper - Fix duplication bugs
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
+
|
||||
|
||||
Reference in New Issue
Block a user