made the ID in PacketEntitySpawn unsigned.
This commit is contained in:
parent
2eb63c07de
commit
ddd4b6eb48
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ public class PacketEntitySpawn extends ForgePacket
|
|||
{
|
||||
modID = data.readInt();
|
||||
entityID = data.readInt();
|
||||
typeID = data.readByte();
|
||||
typeID = data.readByte() & 0xFF;
|
||||
posX = data.readInt();
|
||||
posY = data.readInt();
|
||||
posZ = data.readInt();
|
||||
|
|
Loading…
Reference in a new issue