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

* fix: correctly processSet with blacklist when required

* Fix incorrect region
This commit is contained in:
Jordan 2023-06-06 18:21:18 +01:00 committed by GitHub
parent 5504811f11
commit b7719d17bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
} }