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

Remove sorting by length for beatmaps

This commit is contained in:
iiSaLMaN 2019-07-09 17:02:51 +03:00
parent e0c1fb7818
commit 38bc652bf2

View File

@ -47,9 +47,6 @@ namespace osu.Game.Screens.Select.Carousel
if (ruleset != 0) return ruleset;
return Beatmap.StarDifficulty.CompareTo(otherBeatmap.Beatmap.StarDifficulty);
case SortMode.Length:
return Beatmap.Length.CompareTo(otherBeatmap.Beatmap.Length);
}
}