fix selection splitting in Y direction

This commit is contained in:
Daniella / Tove 2024-05-31 22:24:37 +02:00
parent e5c38fd338
commit 18cdab89b6
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -20,7 +20,7 @@ public class BlockUtils {
zSideLength = sectionSideLength;
for (int i = 0; i < selections.length; i++) {
BlockPos pos1 = selection.pos1.add(xSideLength * i, 0, zSideLength * i);
BlockPos pos2 = selection.pos1.add(Math.max(Math.min(xSideLength * (i + 1), selSideLength) - 1, 0), 0, Math.min(Math.max(zSideLength * (i + 1) - 1, 0), selSideLength - 1));
BlockPos pos2 = selection.pos1.add(Math.max(Math.min(xSideLength * (i + 1), selSideLength) - 1, 0), selection.pos2.getY(), Math.min(Math.max(zSideLength * (i + 1) - 1, 0), selSideLength - 1));
selections[i] = new Selection(pos1, pos2);
}
return selections;