From 26507ed6b9082d5092363b541514ebfb4209affe Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Wed, 3 Dec 2025 09:01:41 -0500 Subject: [PATCH] Update game.py --- scenes/game.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scenes/game.py b/scenes/game.py index d2bfc40..ea6fdfc 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -766,9 +766,8 @@ class Player: note = self.current_notes_draw[0] if note.type in {NoteType.ROLL_HEAD, NoteType.ROLL_HEAD_L, NoteType.BALLOON_HEAD, NoteType.KUSUDAMA} and len(self.current_notes_draw) > 1: note = self.current_notes_draw[1] - if current_ms > note.hit_ms + 2000: - if note.type == NoteType.TAIL: - self.current_notes_draw.pop(0) + position = self.get_position_x(tex.screen_width, current_ms, note.hit_ms, note.pixels_per_frame_x) + if position < GameScreen.JUDGE_X + (650 * tex.screen_scale): self.current_notes_draw.pop(0) def note_manager(self, current_ms: float, background: Optional[Background]):