From fd34d851efdd413d74be19316e39f77aa5584fea Mon Sep 17 00:00:00 2001 From: MachieCodes Date: Wed, 8 Jan 2025 20:40:22 -0600 Subject: [PATCH] Fix Loading --- .../java/meteordevelopment/meteorclient/systems/Systems.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/meteordevelopment/meteorclient/systems/Systems.java b/src/main/java/meteordevelopment/meteorclient/systems/Systems.java index 40663b851e..cab3ce77cb 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/Systems.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/Systems.java @@ -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(); @@ -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());