1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Add score id key

This commit is contained in:
smoogipoo 2021-10-10 15:47:39 +09:00
parent c49d0a5013
commit 4475697a9c

View File

@ -76,6 +76,7 @@ namespace osu.Game.Scoring
return scores.Select((score, index) => (score: score, totalScore: totalScores[index]))
.OrderByDescending(g => g.totalScore)
.ThenBy(g => g.score.OnlineScoreID)
.Select(g => g.score)
.ToArray();
}