From d5b479d76612d857688005fa63b0a4bc4b410ca3 Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 3 Jun 2025 11:55:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=8C=9C=E6=AD=8C=E5=90=8D?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E4=BB=8EAPI=E4=B8=AD=E6=8F=90?= =?UTF-8?q?=E5=8F=96=E6=AD=8C=E6=9B=B2=E5=89=8D=E5=A5=8F=EF=BC=8C=E7=84=B6?= =?UTF-8?q?=E5=90=8E=E7=8C=9C=E6=AD=8C=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/guess_song/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/guess_song/main.py b/plugins/guess_song/main.py index 005c417..047aca9 100644 --- a/plugins/guess_song/main.py +++ b/plugins/guess_song/main.py @@ -183,7 +183,7 @@ class GuessSongPlugin(MessagePluginInterface): # 如果游戏进行中,且有内容,则视为答案 if current_game and current_game.get("status") == "playing": if content: # 有内容,视为答案 - return await self._check_answer(bot, session_id, sender, content, current_game) + return await self._check_answer(message) else: # 没有内容,提示已有游戏在进行中 await bot.send_text_message(session_id, f"⚠️ 当前已有猜歌游戏在进行中,请直接回复 [猜歌名 歌名] 进行猜测", sender) return True, "已有游戏进行中"