Skip to content

Commit

Permalink
Fix Loading
Browse files Browse the repository at this point in the history
  • Loading branch information
machiecodes committed Jan 9, 2025
1 parent 4330b79 commit fd34d85
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public static void addPreLoadTask(Runnable task) {
}

public static void init() {
// Has to be loaded first so the the hidden modules list in config tab can load modules
add(new Modules());

Config config = new Config();
System<?> configSystem = add(config);
configSystem.init();
Expand All @@ -42,7 +45,6 @@ public static void init() {
// Registers the colors from config tab. This allows rainbow colours to work for friends.
config.settings.registerColorSettings(null);

add(new Modules());
add(new Macros());
add(new Friends());
add(new Accounts());
Expand Down

0 comments on commit fd34d85

Please sign in to comment.