fix: regions not trimming Y correctly when restricted (#2363)

This commit is contained in:
Paul
2023-07-17 21:47:47 +01:00
committed by GitHub
parent e0507e6440
commit 5167073326

View File

@@ -85,7 +85,7 @@ public interface IBatchProcessor {
} }
for (int layer = maxLayer; layer < set.getMaxSectionPosition(); layer++) { for (int layer = maxLayer; layer < set.getMaxSectionPosition(); layer++) {
if (set.hasSection(layer)) { if (set.hasSection(layer)) {
if (layer == minLayer) { if (layer == maxLayer) {
char[] arr = set.loadIfPresent(layer); char[] arr = set.loadIfPresent(layer);
if (arr != null) { if (arr != null) {
int index = ((maxY + 1) & 15) << 8; int index = ((maxY + 1) & 15) << 8;