Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
Fixes #261 set bounds
Dieser Commit ist enthalten in:
Ursprung
1f19b92b0b
Commit
63839bfdf6
@ -700,11 +700,11 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
|
|||||||
minSection++;
|
minSection++;
|
||||||
}
|
}
|
||||||
if (yEnd != 15) {
|
if (yEnd != 15) {
|
||||||
filter(chunk, filter, block, get, set, minSection, localMinX, 0, localMinZ, localMaxX, 15, localMaxZ, full);
|
filter(chunk, filter, block, get, set, minSection, localMinX, 0, localMinZ, localMaxX, yEnd, localMaxZ, full);
|
||||||
maxSection--;
|
maxSection--;
|
||||||
}
|
}
|
||||||
for (int layer = minSection; layer <= maxSection; layer++) {
|
for (int layer = minSection; layer <= maxSection; layer++) {
|
||||||
filter(chunk, filter, block, get, set, layer, localMinX, yStart, localMinZ, localMaxX, yEnd, localMaxZ, full);
|
filter(chunk, filter, block, get, set, layer, localMinX, 0, localMinZ, localMaxX, 15, localMaxZ, full);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren