Store raw BeatmapCollection in filter control

This commit is contained in:
smoogipoo
2020-09-09 23:10:21 +09:00
parent af412947b2
commit 43525614ad
4 changed files with 5 additions and 4 deletions

View File

@ -61,7 +61,7 @@ namespace osu.Game.Screens.Select.Carousel
}
if (match)
match &= criteria.Collection?.ContainsBeatmap(Beatmap) ?? true;
match &= criteria.Collection?.Beatmaps.Contains(Beatmap) ?? true;
Filtered.Value = !match;
}