Skip to content

Commit e70ea76

Browse files
committed
spotless
1 parent 56a083c commit e70ea76

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/com/gtnewhorizon/structurelib/structure/StructureUtility.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,8 @@ public PlaceResult survivalPlaceBlock(
434434
Block block = world.getBlock(x, y, z);
435435
int meta = world.getBlockMetadata(x, y, z);
436436
TIER tier = tierExtractor.convert(block, meta);
437-
if (Objects.equals(tier, tierExtractor.convert(hint.getKey(), hint.getValue()))) return PlaceResult.SKIP;
437+
if (Objects.equals(tier, tierExtractor.convert(hint.getKey(), hint.getValue())))
438+
return PlaceResult.SKIP;
438439
return StructureUtility.survivalPlaceBlock(
439440
hint.getKey(), hint.getValue(), world, x, y, z, s, actor, chatter);
440441
}

0 commit comments

Comments
 (0)