From 0d305463fc08d3921b9f7a66416c08adc1760299 Mon Sep 17 00:00:00 2001 From: boy0001 Date: Wed, 29 Oct 2014 19:15:58 +1100 Subject: [PATCH] So that's how you're meant to do it. --- .../plot/generator/WorldGenerator.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/WorldGenerator.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/WorldGenerator.java index 4ceb846f7..ed51db378 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/WorldGenerator.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/WorldGenerator.java @@ -70,7 +70,13 @@ public class WorldGenerator extends PlotGenerator { } return manager; } - + /** + * Allow spawning everywhere (up to server owners to keep it safe) + */ + @Override + public boolean canSpawn(World world, int x, int z) { + return true; + } /** * Get a new plotworld class For square plots you can use the * DefaultPlotWorld class which comes with PlotSquared