mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
sort by ruleset id first then star diff
This commit is contained in:
@ -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));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user