1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 18:44:15 +08:00

Merge pull request #33285 from peppy/change-statistics-order

SongSelectV2: Change difficulty information order to match stable
This commit is contained in:
Bartłomiej Dach
2025-05-27 11:27:04 +02:00
committed by GitHub
Unverified
@@ -333,9 +333,9 @@ namespace osu.Game.Screens.SelectV2
difficultyStatisticsDisplay.Statistics = new[]
{
firstStatistic,
new StatisticDifficulty.Data(BeatmapsetsStrings.ShowStatsAr, baseDifficulty.ApproachRate, rateAdjustedDifficulty.ApproachRate, 10),
new StatisticDifficulty.Data(BeatmapsetsStrings.ShowStatsAccuracy, baseDifficulty.OverallDifficulty, rateAdjustedDifficulty.OverallDifficulty, 10),
new StatisticDifficulty.Data(BeatmapsetsStrings.ShowStatsDrain, baseDifficulty.DrainRate, rateAdjustedDifficulty.DrainRate, 10),
new StatisticDifficulty.Data(BeatmapsetsStrings.ShowStatsAr, baseDifficulty.ApproachRate, rateAdjustedDifficulty.ApproachRate, 10),
};
});