Fixed #355 - Forgot to remove a printline

This commit is contained in:
Calclavia 2014-03-03 22:50:09 +08:00
parent c0a9aebf79
commit e801a81180

View file

@ -25,7 +25,7 @@ public class BlockMechanicalTurbine extends BlockTurbine
public int getDamageValue(World world, int x, int y, int z)
{
TileEntity tile = world.getBlockTileEntity(x, y, z);
System.out.println(world.isRemote + " : " + tile);
if (tile instanceof TileTurbine)
return ((TileTurbine) tile).tier;