bug fixes related to gauge

This commit is contained in:
Anthony Samms
2025-09-17 22:25:45 -04:00
parent edfa35d09a
commit 3fc0c80e0a
4 changed files with 69 additions and 41 deletions

View File

@@ -156,7 +156,7 @@ def calculate_base_score(play_note_list: deque[Note | Drumroll | Balloon]) -> in
drumroll_sec += (next_note.hit_ms - note.hit_ms) / 1000
elif isinstance(note, Balloon):
balloon_num += 1
balloon_count += note.count
balloon_count += min(100, note.count)
else:
total_notes += 1
if total_notes == 0: