Remove debug code

This commit is contained in:
Modmuss50 2017-08-14 11:56:24 +01:00 committed by GitHub
parent 9c07d6fa1c
commit ad3d13d134

View file

@ -324,7 +324,6 @@ public class MultiBlockCasing extends RectangularMultiblockControllerBase {
protected void isBlockGoodForInterior(World world, int x, int y, int z) throws MultiblockValidationException {
Block block = world.getBlockState(new BlockPos(x, y, z)).getBlock();
System.out.println(block);
if (block.isAir(world.getBlockState(new BlockPos(x, y, z)), world, new BlockPos(x, y, z))) {
} else if (block.getUnlocalizedName().equals("tile.lava")) {
@ -344,4 +343,4 @@ public class MultiBlockCasing extends RectangularMultiblockControllerBase {
}
}
}
}