Update TFMExtras.java

This commit is contained in:
2026-05-21 18:35:29 -04:00
parent 55e5e69667
commit 5aebaf4f64
+4 -5
View File
@@ -43,11 +43,6 @@ public class TFMExtras extends PlexModule
config.load(); config.load();
loadMessages("tfmextras/messages.yml"); loadMessages("tfmextras/messages.yml");
jumpPads = new JumpPads(config.getInt("server.jumppad_strength", 1)); jumpPads = new JumpPads(config.getInt("server.jumppad_strength", 1));
}
@Override
public void enable()
{
List.of( List.of(
new AdminInfoCommand(this), new AdminInfoCommand(this),
new AutoClearCommand(this), new AutoClearCommand(this),
@@ -65,7 +60,11 @@ public class TFMExtras extends PlexModule
new OrbitCommand(), new OrbitCommand(),
new RandomFishCommand() new RandomFishCommand()
).forEach(this::registerCommand); ).forEach(this::registerCommand);
}
@Override
public void enable()
{
List.of( List.of(
new ClownfishListener(this), new ClownfishListener(this),
new JumpPadsListener(this), new JumpPadsListener(this),