mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 11:40:13 +01:00
Fixed bug where having 0 combo granted 10,000 pt bonus in gen3 mode
This commit is contained in:
@@ -966,7 +966,7 @@ class Player:
|
|||||||
else:
|
else:
|
||||||
background.add_chibi(True, 1)
|
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.score += 10000
|
||||||
self.base_score_list.append(ScoreCounterAnimation(self.player_num, 10000, self.is_2p))
|
self.base_score_list.append(ScoreCounterAnimation(self.player_num, 10000, self.is_2p))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user