Skip to content

Commit

Permalink
Fix searching at song select matching incorrect ruleset
Browse files Browse the repository at this point in the history
Regressed with ppy#25679.
  • Loading branch information
peppy committed Dec 6, 2023
1 parent 88095aa commit 5c9cf48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osu.Game/Screens/Select/Carousel/CarouselBeatmap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ private bool checkMatch(FilterCriteria criteria)
return match;
}

if (!match) return false;

if (criteria.SearchTerms.Length > 0)
{
match = BeatmapInfo.Match(criteria.SearchTerms);
Expand Down

0 comments on commit 5c9cf48

Please sign in to comment.