diff --git a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java index 3ae18973..17b35e7c 100644 --- a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java +++ b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java @@ -220,13 +220,6 @@ public class Plugin implements ServerEventListener { } }); - //start render-manager - if (pluginState.isRenderThreadsEnabled()) { - checkPausedByPlayerCount(); // <- this also starts the render-manager if it should start - } else { - Logger.global.logInfo("Render-Threads are STOPPED! Use the command 'bluemap start' to start them."); - } - //update webapp and settings if (webappConfig.isEnabled()) blueMap.createOrUpdateWebApp(false); @@ -325,6 +318,13 @@ public class Plugin implements ServerEventListener { if (webappConfig.isEnabled()) this.getBlueMap().getWebFilesManager().saveSettings(); + //start render-manager + if (pluginState.isRenderThreadsEnabled()) { + checkPausedByPlayerCount(); // <- this also starts the render-manager if it should start + } else { + Logger.global.logInfo("Render-Threads are STOPPED! Use the command 'bluemap start' to start them."); + } + //done loaded = true; }