mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 23:12:56 +08:00
Populate total score without mods when performing standardised score migration
This commit is contained in:
parent
2f1a4cdaa4
commit
18bb81e7a7
@ -16,6 +16,7 @@ using osu.Game.Rulesets.Objects;
|
|||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Rulesets.Scoring.Legacy;
|
using osu.Game.Rulesets.Scoring.Legacy;
|
||||||
using osu.Game.Scoring;
|
using osu.Game.Scoring;
|
||||||
|
using osu.Game.Scoring.Legacy;
|
||||||
|
|
||||||
namespace osu.Game.Database
|
namespace osu.Game.Database
|
||||||
{
|
{
|
||||||
@ -248,6 +249,7 @@ namespace osu.Game.Database
|
|||||||
score.Accuracy = computeAccuracy(score, scoreProcessor);
|
score.Accuracy = computeAccuracy(score, scoreProcessor);
|
||||||
score.Rank = computeRank(score, scoreProcessor);
|
score.Rank = computeRank(score, scoreProcessor);
|
||||||
score.TotalScore = convertFromLegacyTotalScore(score, ruleset, beatmap);
|
score.TotalScore = convertFromLegacyTotalScore(score, ruleset, beatmap);
|
||||||
|
LegacyScoreDecoder.PopulateTotalScoreWithoutMods(score);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user