From cb596ee6eab2d35bf85d2a65c0b7dab68a615649 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Mon, 18 Oct 2021 17:27:51 +0100 Subject: [PATCH] Fix StackOverFlow --- .../core/queue/LocationOffsetDelegateQueueCoordinator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }