mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:52:54 +08:00
Correctly account for max combo of the input, rather than the global
This commit is contained in:
parent
cc3dddf59f
commit
f13683dc90
@ -253,7 +253,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
}
|
}
|
||||||
|
|
||||||
double accuracy = maxBaseScore > 0 ? computedBaseScore / maxBaseScore : 0;
|
double accuracy = maxBaseScore > 0 ? computedBaseScore / maxBaseScore : 0;
|
||||||
double comboRatio = maxAchievableCombo > 0 ? (double)HighestCombo.Value / maxAchievableCombo : 1;
|
double comboRatio = maxAchievableCombo > 0 ? (double)maxCombo / maxAchievableCombo : 1;
|
||||||
|
|
||||||
double score = GetScore(mode, maxAchievableCombo, accuracy, comboRatio, scoreResultCounts);
|
double score = GetScore(mode, maxAchievableCombo, accuracy, comboRatio, scoreResultCounts);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user