mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 04:19:53 +08:00
Merge pull request #10768 from bdach/force-import-standardised
Always store standardised score when populating ScoreInfo
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user