made the ID in PacketEntitySpawn unsigned.

This commit is contained in:
LexManos 2012-04-18 19:11:09 -07:00
parent 2eb63c07de
commit ddd4b6eb48
1 changed files with 1 additions and 1 deletions

View File

@ -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();