mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Avoid performing keyword filtering at song select unless keywords are specified
This commit is contained in:
parent
1a20725162
commit
45bf35c425
@ -55,7 +55,7 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
|
||||
match &= !criteria.UserStarDifficulty.HasFilter || criteria.UserStarDifficulty.IsInRange(BeatmapInfo.StarRating);
|
||||
|
||||
if (match)
|
||||
if (match && criteria.SearchTerms.Length > 0)
|
||||
{
|
||||
string[] terms = BeatmapInfo.GetSearchableTerms();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user