update llm to qwen

This commit is contained in:
bridge
2025-10-02 17:44:09 +08:00
parent 2d97edca8f
commit c9d51642fb
3 changed files with 4 additions and 1 deletions

View File

@@ -279,7 +279,7 @@ class MoveToAvatar(DefineAction, ActualActionMixin):
target = None
if target is None:
return StepStatus.COMPLETED, []
done = self.avatar.is_in_region(target.tile.region)
done = self.avatar.tile == target.tile
return (StepStatus.COMPLETED if done else StepStatus.RUNNING), []
def finish(self, avatar_name: str) -> list[Event]: