Update bot.py修复每次从数据库读取额外加0.5的问题

This commit is contained in:
梦溪畔
2025-03-15 15:51:44 +08:00
committed by GitHub
parent 39170079c3
commit 6674854c05

View File

@@ -85,7 +85,7 @@ class ChatBot:
chat_stream=chat, chat_stream=chat,
) )
await relationship_manager.update_relationship_value( await relationship_manager.update_relationship_value(
chat_stream=chat, relationship_value=0.5 chat_stream=chat, relationship_value=0
) )
await message.process() await message.process()