mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 03:13:21 +08:00
Always add non-bonus change to combo portion
This commit is contained in:
parent
30a296bd09
commit
25d72d370e
@ -217,8 +217,7 @@ namespace osu.Game.Rulesets.Scoring
|
||||
|
||||
if (result.Type.IsBonus())
|
||||
currentBonusPortion += GetBonusScoreChange(result);
|
||||
|
||||
if (result.Type.AffectsCombo())
|
||||
else
|
||||
currentComboPortion += GetComboScoreChange(result);
|
||||
|
||||
ApplyScoreChange(result);
|
||||
@ -261,8 +260,7 @@ namespace osu.Game.Rulesets.Scoring
|
||||
|
||||
if (result.Type.IsBonus())
|
||||
currentBonusPortion -= GetBonusScoreChange(result);
|
||||
|
||||
if (result.Type.AffectsCombo())
|
||||
else
|
||||
currentComboPortion -= GetComboScoreChange(result);
|
||||
|
||||
RemoveScoreChange(result);
|
||||
|
Loading…
Reference in New Issue
Block a user