修复变量冲突

pull/1222/head
UnCLAS-Prommer 2025-08-25 00:32:02 +08:00
parent 0ca93b3f9d
commit 2cec83e0dc
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -724,8 +724,8 @@ class ActionPlanner:
]
action_str = ""
for action in actions:
action_str += f"{action.action_type} "
for action_planner_info in actions:
action_str += f"{action_planner_info.action_type} "
logger.info(
f"{self.log_prefix}大脑小脑决定执行{len(actions)}个动作: {action_str}"
)