1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 00:49:53 +08:00

Merge pull request #10768 from bdach/force-import-standardised

Always store standardised score when populating ScoreInfo
This commit is contained in:
Dan Balasescu
2020-11-10 18:12:35 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -290,7 +290,7 @@ namespace osu.Game.Rulesets.Scoring
/// </summary>
public virtual void PopulateScore(ScoreInfo score)
{
score.TotalScore = (long)Math.Round(TotalScore.Value);
score.TotalScore = (long)Math.Round(GetStandardisedScore());
score.Combo = Combo.Value;
score.MaxCombo = HighestCombo.Value;
score.Accuracy = Math.Round(Accuracy.Value, 4);