mirror of
https://github.com/ppy/osu
synced 2024-12-12 18:07:52 +00:00
Merge pull request #11180 from gagahpangeran/beatmap-diff-icon
Fix beatmapset panel difficulty icon order
This commit is contained in:
commit
801080e06e
@ -152,7 +152,7 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var b in SetInfo.Beatmaps.OrderBy(beatmap => beatmap.StarDifficulty))
|
||||
foreach (var b in SetInfo.Beatmaps.OrderBy(beatmap => beatmap.Ruleset.ID).ThenBy(beatmap => beatmap.StarDifficulty))
|
||||
icons.Add(new DifficultyIcon(b));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user