mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-07 23:52:11 -07:00
Update to Minecraft 1.14.2
This commit is contained in:
@@ -689,7 +689,7 @@
|
||||
this.cl = packetplayinsettings.e();
|
||||
@@ -1149,13 +1479,13 @@
|
||||
if (entity instanceof EntityHuman) {
|
||||
this.playerConnection.sendPacket(new PacketPlayOutEntityDestroy(new int[] { entity.getId()}));
|
||||
this.playerConnection.sendPacket(new PacketPlayOutEntityDestroy(new int[]{entity.getId()}));
|
||||
} else {
|
||||
- this.removeQueue.add(entity.getId());
|
||||
+ this.removeQueue.add((Integer) entity.getId()); // CraftBukkit - decompile error
|
||||
|
Reference in New Issue
Block a user