diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java index f94d20205..6b2f21b9f 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java @@ -89,7 +89,7 @@ public class LocationOffsetDelegateQueueCoordinator extends DelegateQueueCoordin public boolean setBiome(int x, int z, @NonNull BiomeType biome) { boolean result = true; for (int y = 0; y < 256; y++) { - result &= this.setBiome(x, z, biome); + result &= this.setBiome(x, y, z, biome); } return result; }