Changed load order

This commit is contained in:
Auxilor
2021-02-17 15:45:33 +00:00
parent 78ae662ced
commit b5af17cf08

View File

@@ -186,7 +186,6 @@ public abstract class AbstractEcoPlugin extends JavaPlugin {
this.bStatsId = bStatsId;
this.proxyPackage = proxyPackage;
this.color = color;
this.displayModule = createDisplayModule();
this.log = new EcoLogger(this);
this.scheduler = new EcoScheduler(this);
@@ -200,6 +199,8 @@ public abstract class AbstractEcoPlugin extends JavaPlugin {
this.langYml = new Lang(this);
this.configYml = new Config(this);
this.displayModule = createDisplayModule();
LOADED_ECO_PLUGINS.add(this.getName().toLowerCase());
}