Skip to content

Commit

Permalink
Fix tinker tank and seared furnace no longer allowing the controller …
Browse files Browse the repository at this point in the history
…in the bottom layer (#3719)

Makes sense for smelteries, but not valid for the other two
  • Loading branch information
KnightMiner committed Jan 12, 2019
1 parent b8ebb49 commit 8fee2e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 8fee2e2

Please sign in to comment.