From 45ed6f0d7f3308a0d00f9060baf671ef4d42a601 Mon Sep 17 00:00:00 2001 From: Rseifert Date: Mon, 27 Aug 2012 21:26:46 -0400 Subject: [PATCH] fixed a server side bug not sure why i got a method not found error for this but it looks like its fixed --- src/common/BasicPipes/pipes/TileEntityPipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/BasicPipes/pipes/TileEntityPipe.java b/src/common/BasicPipes/pipes/TileEntityPipe.java index 7e60ed93..cd93001f 100644 --- a/src/common/BasicPipes/pipes/TileEntityPipe.java +++ b/src/common/BasicPipes/pipes/TileEntityPipe.java @@ -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) {