Fixed rotation packet. Don't care to check we actually need it

This commit is contained in:
libraryaddict 2014-09-22 05:02:07 +12:00
parent 19689a2ed6
commit 286a1bde89

View file

@ -1453,8 +1453,8 @@ public class PacketsManager {
mods.write(1, yaw); mods.write(1, yaw);
PacketContainer look = new PacketContainer(PacketType.Play.Server.ENTITY_LOOK); PacketContainer look = new PacketContainer(PacketType.Play.Server.ENTITY_LOOK);
look.getIntegers().write(0, entity.getEntityId()); look.getIntegers().write(0, entity.getEntityId());
look.getBytes().write(0, yaw); look.getBytes().write(3, yaw);
look.getBytes().write(1, pitch); look.getBytes().write(4, pitch);
packets = new PacketContainer[] { look, rotation }; packets = new PacketContainer[] { look, rotation };
} }
} }