修复了输入marsho会触发的bug

This commit is contained in:
Rikka-desu 2024-11-24 16:03:38 +08:00
parent 62f49eb381
commit 677fa98a3f

View File

@ -178,8 +178,9 @@ async def refresh_data():
@marsho_cmd.handle()
async def marsho(target: MsgTarget, event: Event, text: Optional[UniMsg] = None):
global target_list
if event.get_message() and not text:
if event.get_message() and (not text and text == config.marshoai_default_name):
text = event.get_message()
print(text)
if not text:
# 发送说明
await UniMessage(metadata.usage + "\n当前使用的模型:" + model_name).send()