fixed packet issue

This commit is contained in:
Rseifert 2012-09-20 19:42:37 -04:00
parent 781ea577e1
commit cce1196292

View file

@ -114,7 +114,7 @@ public class TileEntityPipe extends TileEntity implements ILiquidConsumer,IPacke
count++;
if(count >= 30 || intiUpdate)
{
PacketManager.sendTileEntityPacket(this, "Pipes", new Object[]{this.type});
PacketManager.sendTileEntityPacket(this, "Pipes", new Object[]{this.type.ordinal()});
count = 0;
intiUpdate = false;
}