1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 03:19:55 +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
Unverified
parent 30a296bd09
commit 25d72d370e
+2 -4
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);