Fix skull being shown overhead always.

This commit is contained in:
thispixel
2014-06-17 14:59:54 +01:00
parent b0a537d356
commit fd118824bd
@@ -120,7 +120,7 @@ public final class PlayerSynchronizationEventEncoder extends EventEncoder<Player
GamePacketBuilder playerProperties = new GamePacketBuilder();
playerProperties.put(DataType.BYTE, appearance.getGender().toInteger());
playerProperties.put(DataType.BYTE, block.isSkulled() ? 1 : 0);
playerProperties.put(DataType.BYTE, block.isSkulled() ? 1 : -1);
playerProperties.put(DataType.BYTE, block.getHeadIcon());
if (block.appearingAsNpc()) {