Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
fix: disallowed regions can be length 0 (#2368)
Dieser Commit ist enthalten in:
Ursprung
8b39e41a1a
Commit
d42854845a
@ -607,20 +607,17 @@ public final class EditSessionBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
FaweRegionExtent regionExtent = null;
|
FaweRegionExtent regionExtent = null;
|
||||||
if (disallowedRegions != null) { // Always use MultiRegionExtent if we have blacklist regions
|
// Always use MultiRegionExtent if we have blacklist regions
|
||||||
|
if (allowedRegions != null && allowedRegions.length == 0) {
|
||||||
|
regionExtent = new NullExtent(this.extent, FaweCache.NO_REGION);
|
||||||
|
} else if (disallowedRegions != null && disallowedRegions.length != 0) {
|
||||||
regionExtent = new MultiRegionExtent(this.extent, this.limit, allowedRegions, disallowedRegions);
|
regionExtent = new MultiRegionExtent(this.extent, this.limit, allowedRegions, disallowedRegions);
|
||||||
} else if (allowedRegions == null) {
|
} else if (allowedRegions == null) {
|
||||||
allowedRegions = new Region[]{RegionWrapper.GLOBAL()};
|
allowedRegions = new Region[]{RegionWrapper.GLOBAL()};
|
||||||
|
} else if (allowedRegions.length == 1) {
|
||||||
|
regionExtent = new SingleRegionExtent(this.extent, this.limit, allowedRegions[0]);
|
||||||
} else {
|
} else {
|
||||||
if (allowedRegions.length == 0) {
|
regionExtent = new MultiRegionExtent(this.extent, this.limit, allowedRegions, null);
|
||||||
regionExtent = new NullExtent(this.extent, FaweCache.NO_REGION);
|
|
||||||
} else {
|
|
||||||
if (allowedRegions.length == 1) {
|
|
||||||
regionExtent = new SingleRegionExtent(this.extent, this.limit, allowedRegions[0]);
|
|
||||||
} else {
|
|
||||||
regionExtent = new MultiRegionExtent(this.extent, this.limit, allowedRegions, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (regionExtent != null) {
|
if (regionExtent != null) {
|
||||||
if (placeChunks) {
|
if (placeChunks) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren