aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cc/woverflow/chatting/command
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/command')
-rw-r--r--src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt b/src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt
deleted file mode 100644
index ba697e1..0000000
--- a/src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package cc.woverflow.chatting.command
-
-import cc.woverflow.chatting.Chatting
-import cc.woverflow.chatting.config.ChattingConfig
-import gg.essential.api.EssentialAPI
-import gg.essential.api.commands.Command
-import gg.essential.api.commands.DefaultHandler
-
-object ChattingCommand : Command(Chatting.ID, true) {
-
- override val commandAliases: Set<Alias> = setOf(Alias("stratus"))
-
- @DefaultHandler
- fun handle() {
- EssentialAPI.getGuiUtil().openScreen(ChattingConfig.gui())
- }
-} \ No newline at end of file