File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
src/main/java/pro/cloudnode/smp/cloudnodemsg Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 55import pro .cloudnode .smp .cloudnodemsg .command .MainCommand ;
66import pro .cloudnode .smp .cloudnodemsg .command .MessageCommand ;
77import pro .cloudnode .smp .cloudnodemsg .command .ReplyCommand ;
8+ import pro .cloudnode .smp .cloudnodemsg .command .ToggleMessageCommand ;
89
910import java .util .Objects ;
1011
@@ -26,6 +27,7 @@ public void onEnable() {
2627 Objects .requireNonNull (getCommand ("cloudnodemsg" )).setExecutor (new MainCommand ());
2728 Objects .requireNonNull (getCommand ("message" )).setExecutor (new MessageCommand ());
2829 Objects .requireNonNull (getCommand ("reply" )).setExecutor (new ReplyCommand ());
30+ Objects .requireNonNull (getCommand ("togglemsg" )).setExecutor (new ToggleMessageCommand ());
2931 }
3032
3133 @ Override
Original file line number Diff line number Diff line change 1+ package pro .cloudnode .smp .cloudnodemsg .command ;
2+
3+ public class ToggleMessageCommand {
4+ }
You can’t perform that action at this time.
0 commit comments