1
0
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:
Dan Balasescu 2023-05-20 00:24:43 +09:00
parent 30a296bd09
commit 25d72d370e

View File

@ -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);