Removed loop issue

This commit is contained in:
DarkGuardsman 2013-11-03 01:59:15 -04:00
parent 8bf0e12ba8
commit 8043e49528

View file

@ -104,18 +104,6 @@ public abstract class BlockMachine extends BlockTile implements IExtraBlockInfo
}
}
@Override
public void onNeighborTileChange(World world, int x, int y, int z, int tileX, int tileY, int tileZ)
{
super.onNeighborTileChange(world, x, y, z, tileX, tileY, tileZ);
TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
if (tileEntity instanceof INetworkPart)
{
((INetworkPart) tileEntity).refresh();
}
}
public void breakBlock(World world, int x, int y, int z, int par5, int par6)
{
super.breakBlock(world, x, y, z, par5, par6);