Moves config loaded toggle to avoid unnecessary debug output

This commit is contained in:
2026-01-23 02:20:41 +01:00
parent c5a964337a
commit 89a68b40b1

View File

@@ -92,6 +92,7 @@ public final class StargateConfig {
*/ */
public void finishSetup() { public void finishSetup() {
this.loadConfig(); this.loadConfig();
this.isLoaded = true;
//Enable the required channels for Bungee support //Enable the required channels for Bungee support
if (stargateGateConfig.enableBungee()) { if (stargateGateConfig.enableBungee()) {
@@ -133,8 +134,6 @@ public final class StargateConfig {
"integration is disabled."); "integration is disabled.");
DynmapManager.disable(); DynmapManager.disable();
} }
this.isLoaded = true;
} }
/** /**