diff --git a/worldguard-core/src/main/java/com/sk89q/worldguard/protection/managers/index/ChunkHashTable.java b/worldguard-core/src/main/java/com/sk89q/worldguard/protection/managers/index/ChunkHashTable.java index e28db28d..19e45288 100644 --- a/worldguard-core/src/main/java/com/sk89q/worldguard/protection/managers/index/ChunkHashTable.java +++ b/worldguard-core/src/main/java/com/sk89q/worldguard/protection/managers/index/ChunkHashTable.java @@ -316,7 +316,7 @@ public void run() { List regions = new ArrayList<>(); ProtectedRegion chunkRegion = new ProtectedCuboidRegion( "_", - position.multiply(16).toBlockVector3(0), + position.multiply(16).toBlockVector3(Integer.MIN_VALUE), position.add(1, 1).multiply(16).toBlockVector3(Integer.MAX_VALUE)); index.applyIntersecting(chunkRegion, new RegionCollectionConsumer(regions, false)); Collections.sort(regions);