unoptimized
This commit is contained in:
parent
005ca65617
commit
7b22bd72c1
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user