Paper/Spigot-Server-Patches/0102-Fix-reducedDebugInfo-not-initialized-on-client.patch

22 lines
1.2 KiB
Diff
Raw Normal View History

2017-05-14 18:05:01 +00:00
From f7d4407c751b874ca036f5621c2b9610b6c1bd9d Mon Sep 17 00:00:00 2001
From: Jedediah Smith <jedediah@silencegreys.com>
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
2017-05-14 18:05:01 +00:00
index 7c73e08c3..45ad22c8f 100644
--- a/src/main/java/net/minecraft/server/PlayerList.java
+++ b/src/main/java/net/minecraft/server/PlayerList.java
2017-05-14 18:05:01 +00:00
@@ -156,6 +156,7 @@ public abstract class PlayerList {
2016-11-17 02:23:38 +00:00
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);
2017-05-14 18:05:01 +00:00
entityplayer.getStatisticManager().c();
entityplayer.F().a(entityplayer);
--
2017-05-14 18:05:01 +00:00
2.13.0