添加猜歌名功能,从API中提取歌曲前奏,然后猜歌名
This commit is contained in:
@@ -183,7 +183,7 @@ class GuessSongPlugin(MessagePluginInterface):
|
|||||||
# 如果游戏进行中,且有内容,则视为答案
|
# 如果游戏进行中,且有内容,则视为答案
|
||||||
if current_game and current_game.get("status") == "playing":
|
if current_game and current_game.get("status") == "playing":
|
||||||
if content: # 有内容,视为答案
|
if content: # 有内容,视为答案
|
||||||
return await self._check_answer(bot, session_id, sender, content, current_game)
|
return await self._check_answer(message)
|
||||||
else: # 没有内容,提示已有游戏在进行中
|
else: # 没有内容,提示已有游戏在进行中
|
||||||
await bot.send_text_message(session_id, f"⚠️ 当前已有猜歌游戏在进行中,请直接回复 [猜歌名 歌名] 进行猜测", sender)
|
await bot.send_text_message(session_id, f"⚠️ 当前已有猜歌游戏在进行中,请直接回复 [猜歌名 歌名] 进行猜测", sender)
|
||||||
return True, "已有游戏进行中"
|
return True, "已有游戏进行中"
|
||||||
|
|||||||
Reference in New Issue
Block a user