diff --git a/Core/src/main/java/com/plotsquared/core/PlotSquared.java b/Core/src/main/java/com/plotsquared/core/PlotSquared.java index 702de9e68d..8477a2fb43 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotSquared.java +++ b/Core/src/main/java/com/plotsquared/core/PlotSquared.java @@ -795,9 +795,8 @@ public void loadWorld( if (world.equals("CheckingPlotSquaredGenerator")) { return; } - if (!this.getPlotAreaManager().addWorld(world)) { - return; - } + // Don't check the return result -> breaks runtime loading of single plot areas on creation + this.getPlotAreaManager().addWorld(world); Set worlds; if (this.worldConfiguration.contains("worlds")) { worlds = this.worldConfiguration.getConfigurationSection("worlds").getKeys(false);