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 feb805925..fc03bb4cf 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/generator/AugmentedUtils.java @@ -140,7 +140,9 @@ public class AugmentedUtils { generator.generateChunk(scoped, area, r); generator.populateChunk(scoped, area, r); } - queue.flush(); + if (queue != null) { + queue.flush(); + } return toReturn; } }