fix: correctly processSet with blacklist when required (#2270)

* fix: correctly processSet with blacklist when required

* Fix incorrect region
Dieser Commit ist enthalten in:
Jordan 2023-06-06 18:21:18 +01:00 committet von GitHub
Ursprung 5504811f11
Commit b7719d17bd
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -172,7 +172,7 @@ public class MultiRegionExtent extends FaweRegionExtent {
set = intersection.processSet(chunk, get, set); set = intersection.processSet(chunk, get, set);
} }
if (disallowedIntersection != null) { if (disallowedIntersection != null) {
intersection.processSet(chunk, get, set); set = disallowedIntersection.processSet(chunk, get, set, true);
} }
return set; return set;
} }