1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 14:13:01 +08:00

Removed check

This commit is contained in:
Andrew Hong 2022-08-22 13:41:36 -04:00
parent bcab7aea26
commit 55f1b43329

View File

@ -131,13 +131,6 @@ namespace osu.Game.Screens.Select.Carousel
base.Filter(criteria);
bool match = Items.All(i => i.Filtered.Value);
if (BeatmapSet?.Equals(criteria.SelectedBeatmapSet) == true)
{
// only check ruleset equality or convertability for selected beatmap
Filtered.Value = !match;
return;
}
match &= criteria.Sort != SortMode.DateRanked || BeatmapSet?.DateRanked != null;
match &= criteria.Sort != SortMode.DateSubmitted || BeatmapSet?.DateSubmitted != null;