From 6ee8b49eb61a6ccb9bce435e049dd5defa4940c7 Mon Sep 17 00:00:00 2001 From: Valerio Date: Fri, 19 Dec 2025 01:16:50 -0500 Subject: [PATCH] Fixed bug where having 0 combo granted 10,000 pt bonus in gen3 mode --- scenes/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/game.py b/scenes/game.py index ed8dbb2..f93918b 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -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))