fix module sorting and a warning

This commit is contained in:
Daniella / Tove 2024-06-20 03:19:54 +02:00
parent 8c1179b09e
commit 938249ae9a
2 changed files with 5 additions and 5 deletions

View file

@ -50,7 +50,6 @@ public class Setup {
new ChatExtras(),
new ChatFilter(),
new ColourSign(),
new Notifier(),
new ClickGUI(),
new Connect(),
new Disconnect(),
@ -70,6 +69,7 @@ public class Setup {
new Nametags(),
new NoRender(),
new NoSlowDown(),
new Notifier(),
new Ping(),
new RenderFun(),
new Say(),

View file

@ -14,14 +14,14 @@ public class ColourSign extends Feature {
return "ColourSign";
}
@Config("Mode")
public Mode mode;
enum Mode {
public enum Mode {
Vanilla,
Spigot
}
@Config("Mode")
public Mode mode;
@Override
public void onTick() {
meta = mode.name();