From 4b4a3f5e0801172f1fd5060c625577d72443d424 Mon Sep 17 00:00:00 2001 From: Yonokid <37304577+Yonokid@users.noreply.github.com> Date: Tue, 2 Sep 2025 22:27:07 -0400 Subject: [PATCH] wahoo --- libs/backgrounds.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/backgrounds.py b/libs/backgrounds.py index b69b9ef..ccd70dd 100644 --- a/libs/backgrounds.py +++ b/libs/backgrounds.py @@ -407,8 +407,11 @@ class BGFever1(BGFeverBase): self.overlay_move_up.update(current_time_ms) self.overlay_move_down.update(current_time_ms) self.wave_spin.update(current_time_ms) + if (self.overlay_move_down.is_finished and len(self.bg_tiles) == 20) and not self.is_transitioned: + self.bg_move.restart() self.is_transitioned = self.overlay_move_down.is_finished and len(self.bg_tiles) == 20 - self.bg_move.update(current_time_ms) + if self.is_transitioned: + self.bg_move.update(current_time_ms) def draw(self, tex: TextureWrapper):