Fixed #355 - Forgot to remove a printline
This commit is contained in:
parent
c0a9aebf79
commit
e801a81180
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ public class BlockMechanicalTurbine extends BlockTurbine
|
||||||
public int getDamageValue(World world, int x, int y, int z)
|
public int getDamageValue(World world, int x, int y, int z)
|
||||||
{
|
{
|
||||||
TileEntity tile = world.getBlockTileEntity(x, y, z);
|
TileEntity tile = world.getBlockTileEntity(x, y, z);
|
||||||
System.out.println(world.isRemote + " : " + tile);
|
|
||||||
if (tile instanceof TileTurbine)
|
if (tile instanceof TileTurbine)
|
||||||
return ((TileTurbine) tile).tier;
|
return ((TileTurbine) tile).tier;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue