Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-04 18:40:06 +01:00
fix: regions not trimming Y correctly when restricted (#2363)
Dieser Commit ist enthalten in:
Ursprung
e0507e6440
Commit
5167073326
@ -85,7 +85,7 @@ public interface IBatchProcessor {
|
||||
}
|
||||
for (int layer = maxLayer; layer < set.getMaxSectionPosition(); layer++) {
|
||||
if (set.hasSection(layer)) {
|
||||
if (layer == minLayer) {
|
||||
if (layer == maxLayer) {
|
||||
char[] arr = set.loadIfPresent(layer);
|
||||
if (arr != null) {
|
||||
int index = ((maxY + 1) & 15) << 8;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren