fix:修复问题

This commit is contained in:
SengokuCola
2025-07-24 22:30:27 +08:00
parent 16b125b815
commit db896299be
6 changed files with 18 additions and 10 deletions

View File

@@ -35,7 +35,7 @@ class ClassicalWillingManager(BaseWillingManager):
if interested_rate > 0.2:
current_willing += interested_rate - 0.2
if willing_info.is_mentioned_bot and global_config.normal_chat.mentioned_bot_inevitable_reply and current_willing < 2:
if willing_info.is_mentioned_bot and global_config.chat.mentioned_bot_inevitable_reply and current_willing < 2:
current_willing += 1 if current_willing < 1.0 else 0.05
self.chat_reply_willing[chat_id] = min(current_willing, 1.0)