From acb69df7ffc02573bdcb01bfc4c57deab617cb0f Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Sat, 1 Nov 2025 15:12:28 -0400 Subject: [PATCH] I gotta stop making commits before I check them --- scenes/game.py | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/scenes/game.py b/scenes/game.py index e8b8893..d4cb482 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -530,23 +530,17 @@ class Player: return note = self.other_notes[0] - if note.hit_ms < current_ms: - if note.type != 8: - if len(self.other_notes) > 1: - tail = self.other_notes[1] - if tail.hit_ms <= current_ms: - self.other_notes.popleft() - self.other_notes.popleft() - self.is_drumroll = False - self.is_balloon = False - else: - if len(self.other_notes) >= 1: - self.other_notes.popleft() - elif (note.hit_ms <= current_ms): + if (note.hit_ms <= current_ms): if note.type == 5 or note.type == 6: self.is_drumroll = True elif note.type == 7 or note.type == 9: self.is_balloon = True + tail = self.other_notes[1] + if tail.hit_ms <= current_ms: + self.other_notes.popleft() + self.other_notes.popleft() + self.is_drumroll = False + self.is_balloon = False def draw_note_manager(self, current_ms: float): """Manages the draw_notes and removes if necessary"""