From 14e1296e138e3ce6248a41443b4b6c447e6ffcd5 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Mon, 4 Feb 2019 14:24:17 +0000 Subject: [PATCH] Only thing I can think of in 8ac9b86that would be causing the lack of plot owners (before reverting the commit) --- .../github/intellectualsites/plotsquared/bukkit/BukkitMain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/BukkitMain.java index e1006b056..0693e1070 100644 --- a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/BukkitMain.java @@ -754,7 +754,7 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain } ChunkGenerator gen = world.getGenerator(); if (gen instanceof BukkitPlotGenerator) { - PlotSquared.get().loadWorld(worldName, (GeneratorWrapper) gen); + PlotSquared.get().loadWorld(worldName, (BukkitPlotGenerator) gen); } else if (gen != null) { PlotSquared.get().loadWorld(worldName, new BukkitPlotGenerator(worldName, gen)); } else if (PlotSquared.get().worlds.contains("worlds." + worldName)) {