diff --git a/tasks/cafe/cafe.py b/tasks/cafe/cafe.py index 669cf92..9247b40 100644 --- a/tasks/cafe/cafe.py +++ b/tasks/cafe/cafe.py @@ -257,8 +257,8 @@ class Cafe(UI): continue if action_timer.reached_and_reset(): - status = self._handle_cafe(status) logger.attr('Status', status) + status = self._handle_cafe(status) if not is_second_cafe_on: if status is CafeStatus.FINISHED: diff --git a/tasks/circle/circle.py b/tasks/circle/circle.py index a4ddb13..5e7caf4 100644 --- a/tasks/circle/circle.py +++ b/tasks/circle/circle.py @@ -47,8 +47,8 @@ class Circle(UI): status = CircleStatus.GOT if action_timer.reached_and_reset(): - status = self._handle_circle(status) logger.attr('Status', status) + status = self._handle_circle(status) if status is CircleStatus.FINISHED: break diff --git a/tasks/tactical_challenge/tactical_challenge.py b/tasks/tactical_challenge/tactical_challenge.py index cb9dc18..d78b53c 100644 --- a/tasks/tactical_challenge/tactical_challenge.py +++ b/tasks/tactical_challenge/tactical_challenge.py @@ -146,8 +146,8 @@ class TacticalChallenge(UI): if not ui_timer.reached(): continue if action_timer.reached_and_reset(): - status = self._handle_challenge(status) logger.attr('Status', status.name) + status = self._handle_challenge(status) if status in (TCStatus.FINAL, TCStatus.FINISHED): break