Remove sorting by length for beatmaps

This commit is contained in:
iiSaLMaN 2019-07-09 17:02:51 +03:00
parent e0c1fb7818
commit 38bc652bf2
1 changed files with 0 additions and 3 deletions

View File

@ -47,9 +47,6 @@ public override int CompareTo(FilterCriteria criteria, CarouselItem other)
if (ruleset != 0) return ruleset;
return Beatmap.StarDifficulty.CompareTo(otherBeatmap.Beatmap.StarDifficulty);
case SortMode.Length:
return Beatmap.Length.CompareTo(otherBeatmap.Beatmap.Length);
}
}