From 6ff528d0eb18cfa2df1b8762bc846ca8445ba6d5 Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Tue, 23 Dec 2025 10:32:31 -0500 Subject: [PATCH] Update game.py --- scenes/game.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scenes/game.py b/scenes/game.py index f5494ad..ceed97e 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -443,8 +443,13 @@ class Player: self.bpm = 120 if self.timeline and hasattr(self.timeline[self.timeline_index], 'bpm'): self.bpm = self.timeline[self.timeline_index].bpm + last_note = self.draw_note_list[0] for note in chain(self.draw_note_list, self.draw_bar_list): self.get_load_time(note) + if note.type == NoteType.TAIL: + note.load_ms = last_note.load_ms + note.unload_ms = last_note.unload_ms + last_note = note self.draw_note_list = deque(sorted(self.draw_note_list, key=lambda n: n.load_ms))