refactor(chat): 优化日程活动提示以减少群聊干扰

修改了日程活动提示的措辞,明确指出当前活动与群聊无关,以防止在群聊场景下产生不相关的联想或干扰。
This commit is contained in:
minecraft1024a
2025-08-30 17:36:55 +08:00
committed by Windpicker-owo
parent 6d1d42b5b6
commit 03e1f74fe2

View File

@@ -450,7 +450,7 @@ class ActionPlanner:
schedule_block = "" schedule_block = ""
if global_config.schedule.enable: if global_config.schedule.enable:
if current_activity := schedule_manager.get_current_activity(): if current_activity := schedule_manager.get_current_activity():
schedule_block = f"你当前正在:{current_activity}" schedule_block = f"你当前正在:{current_activity},但注意它与群聊的聊天无关"
mood_block = "" mood_block = ""
if global_config.mood.enable_mood: if global_config.mood.enable_mood: