fixed a server side bug

not sure why i got a method not found error for this but it looks like
its fixed
This commit is contained in:
Rseifert 2012-08-27 21:26:46 -04:00
parent 21afceb5ed
commit 45ed6f0d7f

View file

@ -109,7 +109,7 @@ if(side == ForgeDirection.EAST)
public void updateEntity()
{
//cause the block to update itself every tick needs to be change to .5 seconds to reduce load
((BlockPipe)this.getBlockType()).updateConductorTileEntity(this.worldObj, this.xCoord, this.yCoord, this.zCoord);
BlockPipe.updateConductorTileEntity(this.worldObj, this.xCoord, this.yCoord, this.zCoord);
count++;
if(count >= 30 || intiUpdate)
{