Update NUSHModule.java

This commit is contained in:
2026-05-21 18:35:21 -04:00
parent 5f6d79ebd9
commit a0ae54ad21
+1 -1
View File
@@ -17,6 +17,7 @@ public class NUSHModule extends PlexModule
{
config = new ModuleConfig(this, "nush/config.yml", "config.yml");
loadMessages("nush/messages.yml");
registerCommand(new NUSHCommand(this));
}
@Override
@@ -25,7 +26,6 @@ public class NUSHModule extends PlexModule
config.load();
enabled = config.getBoolean("server.enabled", false);
time = config.getInt("server.wait_time", 2);
registerCommand(new NUSHCommand(this));
registerListener(new JoinListener(this));
registerListener(new ChatListener(this));
}