From 4ccd3ff290839106e7f2e2f4adb8a8835c49e540 Mon Sep 17 00:00:00 2001 From: drcrazy <hcb@wowhcb.ru> Date: Fri, 15 Sep 2017 02:10:55 +0300 Subject: [PATCH] Fixed lava check inside blast furnace multiblock --- .../tiles/multiblock/TileIndustrialBlastFurnace.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/techreborn/tiles/multiblock/TileIndustrialBlastFurnace.java b/src/main/java/techreborn/tiles/multiblock/TileIndustrialBlastFurnace.java index 3d915f43e..89c4f7cec 100644 --- a/src/main/java/techreborn/tiles/multiblock/TileIndustrialBlastFurnace.java +++ b/src/main/java/techreborn/tiles/multiblock/TileIndustrialBlastFurnace.java @@ -132,10 +132,10 @@ public class TileIndustrialBlastFurnace extends TilePowerAcceptor implements ITo // TODO meta fix } - if (this.world.getBlockState(new BlockPos(location.getX(), location.getY(), location.getZ())) + if (this.world.getBlockState(new BlockPos(location.getX(), location.getY() + 1, location.getZ())) .getBlock().getUnlocalizedName().equals("tile.lava") && this.world - .getBlockState(new BlockPos(location.getX(), location.getY() + 1, location.getZ())) + .getBlockState(new BlockPos(location.getX(), location.getY() + 2, location.getZ())) .getBlock().getUnlocalizedName().equals("tile.lava")) { heat += 500; }