mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Award max combo portion score if max achievable is 0
This commit is contained in:
parent
74af7cc503
commit
2b6e4e575e
@ -197,7 +197,7 @@ namespace osu.Game.Rulesets.Scoring
|
||||
{
|
||||
return GetScore(mode, maxHighestCombo,
|
||||
maxBaseScore > 0 ? baseScore / maxBaseScore : 0,
|
||||
maxHighestCombo > 0 ? (double)HighestCombo.Value / maxHighestCombo : 0,
|
||||
maxHighestCombo > 0 ? (double)HighestCombo.Value / maxHighestCombo : 1,
|
||||
scoreResultCounts);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user