From 73fc582824f7740cda2c970991466e990311252e Mon Sep 17 00:00:00 2001 From: kashike Date: Sun, 3 Apr 2016 05:08:46 -0500 Subject: [PATCH] Fix reducedDebugInfo not initialized on client --- ...dDebugInfo-not-initialized-on-client.patch | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Spigot-Server-Patches/0124-Fix-reducedDebugInfo-not-initialized-on-client.patch diff --git a/Spigot-Server-Patches/0124-Fix-reducedDebugInfo-not-initialized-on-client.patch b/Spigot-Server-Patches/0124-Fix-reducedDebugInfo-not-initialized-on-client.patch new file mode 100644 index 0000000000..c108d000c8 --- /dev/null +++ b/Spigot-Server-Patches/0124-Fix-reducedDebugInfo-not-initialized-on-client.patch @@ -0,0 +1,21 @@ +From 3e68479b520d9f10cbec3428d6994d223157fdd9 Mon Sep 17 00:00:00 2001 +From: Jedediah Smith +Date: Sat, 2 Apr 2016 20:37:03 -0400 +Subject: [PATCH] Fix reducedDebugInfo not initialized on client + + +diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java +index a6a4671..94f122d 100644 +--- a/src/main/java/net/minecraft/server/PlayerList.java ++++ b/src/main/java/net/minecraft/server/PlayerList.java +@@ -151,6 +151,7 @@ public abstract class PlayerList { + playerconnection.sendPacket(new PacketPlayOutSpawnPosition(blockposition)); + playerconnection.sendPacket(new PacketPlayOutAbilities(entityplayer.abilities)); + playerconnection.sendPacket(new PacketPlayOutHeldItemSlot(entityplayer.inventory.itemInHandIndex)); ++ playerconnection.sendPacket(new PacketPlayOutEntityStatus(entityplayer, (byte) (worldserver.getGameRules().getBoolean("reducedDebugInfo") ? 22 : 23))); // Paper - fix this rule not being initialized on the client + this.f(entityplayer); + entityplayer.getStatisticManager().d(); + entityplayer.getStatisticManager().updateStatistics(entityplayer); +-- +2.8.0 +