unoptimized

This commit is contained in:
DBotThePony 2023-01-14 22:38:56 +07:00
parent 005ca65617
commit 7b22bd72c1
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -95,7 +95,7 @@ public record BlockShape(SimpleCuboid ...shapes) {
VoxelShape final_shape = shapes[0].getShape(); VoxelShape final_shape = shapes[0].getShape();
for (int i = 1; i < shapes.length; i++) for (int i = 1; i < shapes.length; i++)
final_shape = Shapes.joinUnoptimized(final_shape, shapes[i].getShape(), BooleanOp.OR); final_shape = Shapes.join(final_shape, shapes[i].getShape(), BooleanOp.OR);
return final_shape; return final_shape;
} }