mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 03:52:54 +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,
|
return GetScore(mode, maxHighestCombo,
|
||||||
maxBaseScore > 0 ? baseScore / maxBaseScore : 0,
|
maxBaseScore > 0 ? baseScore / maxBaseScore : 0,
|
||||||
maxHighestCombo > 0 ? (double)HighestCombo.Value / maxHighestCombo : 0,
|
maxHighestCombo > 0 ? (double)HighestCombo.Value / maxHighestCombo : 1,
|
||||||
scoreResultCounts);
|
scoreResultCounts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user