Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static MultiBlockData detectStructure(Level level, BlockPos controllerPos

if (!level.getBlockState(bottomCornerRelativePosition).is(bottomBlocks)) {
var invalidPos = topCorners.getFirst().relative(controllerFacing.getOpposite()).relative(controllerFacing.getCounterClockWise()).mutable();
throw new InvalidStructureException("Invalid or missing bottom starting block. Valid blocks are " + bottomBlocks, invalidPos, level.getBlockState(invalidPos));
throw new InvalidStructureException("No bottom starting block (one of " + bottomBlocks + ") found within " + maxHeight + " blocks below the top corner block", invalidPos, level.getBlockState(invalidPos));
}

// validate bottom
Expand Down