From 8fee2e22f7adb0978b79a02268115de954f0b06b Mon Sep 17 00:00:00 2001 From: KnightMiner Date: Fri, 11 Jan 2019 18:53:46 -0600 Subject: [PATCH] Fix tinker tank and seared furnace no longer allowing the controller in the bottom layer (#3719) Makes sense for smelteries, but not valid for the other two --- .../tconstruct/smeltery/multiblock/MultiblockCuboid.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/slimeknights/tconstruct/smeltery/multiblock/MultiblockCuboid.java b/src/main/java/slimeknights/tconstruct/smeltery/multiblock/MultiblockCuboid.java index 5a0fba94353..2bfbeb03a84 100644 --- a/src/main/java/slimeknights/tconstruct/smeltery/multiblock/MultiblockCuboid.java +++ b/src/main/java/slimeknights/tconstruct/smeltery/multiblock/MultiblockCuboid.java @@ -39,7 +39,7 @@ public MultiblockStructure detectMultiblock(World world, BlockPos center, int li center = getOuterPos(world, center, EnumFacing.DOWN, 64).up(); // below lowest internal position - if (masterY < center.getY()) { + if (!hasFrame && masterY < center.getY()) { return null; }