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