9
0
mirror of https://github.com/Samsuik/Sakura.git synced 2025-12-28 19:29:07 +00:00

Also reset Y on Iterating Z (#32)

This commit is contained in:
Dreeam
2025-08-15 02:56:22 +08:00
committed by GitHub
parent 062a4a879c
commit bf7e63debc

View File

@@ -58,6 +58,7 @@ public final class BlockPosIterator extends AbstractIterator<BlockPos> {
} else if (z < this.endZ) {
z += 1;
x = this.startX;
y = this.startY;
} else {
return this.endOfData();
}