From cd9d22cb9bdbe9641cf602fcf5aa389cd3478765 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Fri, 27 Jul 2018 14:02:40 +1000 Subject: [PATCH] Fix augmented generator not clearing column --- .../com/intellectualcrafters/plot/generator/AugmentedUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java b/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java index fc03bb4cf..37f4c5f89 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java @@ -130,7 +130,7 @@ public class AugmentedUtils { for (int x = bxx; x <= txx; x++) { for (int z = bzz; z <= tzz; z++) { for (int y = 1; y < 128; y++) { - queue.setBlock(x, y, z, air); + queue.setBlock(bx + x, y, bz + z, air); } } }