From 6ef0b0b64522ae45bf3747b26bd6dc5f58358f82 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sun, 6 Feb 2022 10:39:36 +0700 Subject: 1.3.0 --- .../cc/woverflow/chatting/command/ChattingCommand.kt | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt (limited to 'src/main/kotlin/cc/woverflow/chatting/command') 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 = setOf(Alias("stratus")) - - @DefaultHandler - fun handle() { - EssentialAPI.getGuiUtil().openScreen(ChattingConfig.gui()) - } -} \ No newline at end of file -- cgit