Fixed bug where having 0 combo granted 10,000 pt bonus in gen3 mode

This commit is contained in:
Valerio
2025-12-19 01:16:50 -05:00
parent 4231274993
commit 357de45dd6

View File

@@ -966,7 +966,7 @@ class Player:
else:
background.add_chibi(True, 1)
if self.combo % 100 == 0 and self.score_method == "gen3":
if self.combo > 0 and self.combo % 100 == 0 and self.score_method == "gen3":
self.score += 10000
self.base_score_list.append(ScoreCounterAnimation(self.player_num, 10000, self.is_2p))