From f783f8b4ec53c6f89bffb7eb3ad706ee3dd48c15 Mon Sep 17 00:00:00 2001 From: RTAkland Date: Fri, 11 Oct 2024 17:13:20 +0800 Subject: [PATCH] feat: add new command --- .../kotlin/cn/rtast/fancybot/commands/misc/TodayEatCommand.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/kotlin/cn/rtast/fancybot/commands/misc/TodayEatCommand.kt b/src/main/kotlin/cn/rtast/fancybot/commands/misc/TodayEatCommand.kt index 9863563..f93dc08 100644 --- a/src/main/kotlin/cn/rtast/fancybot/commands/misc/TodayEatCommand.kt +++ b/src/main/kotlin/cn/rtast/fancybot/commands/misc/TodayEatCommand.kt @@ -21,4 +21,8 @@ class TodayEatCommand : BaseCommand() { class TodayDrinkCommand : BaseCommand() { override val commandNames = listOf("今天喝什么") + + override suspend fun executeGroup(listener: OneBotListener, message: GroupMessage, args: List) { + message.reply("你喝牛魔呢") + } } \ No newline at end of file