aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch')
-rw-r--r--Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch b/Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch
new file mode 100644
index 0000000000..0af00b8332
--- /dev/null
+++ b/Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch
@@ -0,0 +1,21 @@
+From 97885a33964fffa97584963cbe542dccb797b0bc Mon Sep 17 00:00:00 2001
+From: Jedediah Smith <[email protected]>
+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 59c7e78b8..e303b45f0 100644
+--- a/src/main/java/net/minecraft/server/PlayerList.java
++++ b/src/main/java/net/minecraft/server/PlayerList.java
+@@ -154,6 +154,7 @@ public abstract class PlayerList {
+ playerconnection.sendPacket(new PacketPlayOutServerDifficulty(worlddata.getDifficulty(), worlddata.isDifficultyLocked()));
+ 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.12.2
+