From ffe1363c485fd51d0dfbf1b608aa9dd8767a7441 Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Sun, 2 Sep 2018 11:10:20 +0200 Subject: [PATCH] Fixed typo in SchemsManager --- .../java/world/bentobox/bentobox/managers/SchemsManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/world/bentobox/bentobox/managers/SchemsManager.java b/src/main/java/world/bentobox/bentobox/managers/SchemsManager.java index b2566eb7d..cd783e483 100644 --- a/src/main/java/world/bentobox/bentobox/managers/SchemsManager.java +++ b/src/main/java/world/bentobox/bentobox/managers/SchemsManager.java @@ -64,11 +64,11 @@ public class SchemsManager { } if (plugin.getIWM().isNetherGenerate(world) && plugin.getIWM().isNetherIslands(world) && !plugin.getSchemsManager().loadSchem(plugin.getIWM().getNetherWorld(world), "nether-island")) { - plugin.logError("Could not load nether_island.schem for " + plugin.getIWM().getFriendlyName(world)); + plugin.logError("Could not load nether-island.schem for " + plugin.getIWM().getFriendlyName(world)); } if (plugin.getIWM().isEndGenerate(world) && plugin.getIWM().isEndIslands(world) && !plugin.getSchemsManager().loadSchem(plugin.getIWM().getEndWorld(world), "end-island")) { - plugin.logError("Could not load end_island.schem for " + plugin.getIWM().getFriendlyName(world)); + plugin.logError("Could not load end-island.schem for " + plugin.getIWM().getFriendlyName(world)); } }