mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 12:02:54 +08:00
Always store standardised score when populating ScoreInfo
This commit is contained in:
parent
d7c30f9b42
commit
109abc0e29
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user