From 0fff9d49378ce8acc9aa0e612b6215ed831eea9b Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 16 Feb 2024 19:17:41 +0900 Subject: [PATCH] Add non-whitespace search term for mods --- osu.Game/Overlays/Mods/ModPanel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Overlays/Mods/ModPanel.cs b/osu.Game/Overlays/Mods/ModPanel.cs index f294b1892d..2d8d01d8c8 100644 --- a/osu.Game/Overlays/Mods/ModPanel.cs +++ b/osu.Game/Overlays/Mods/ModPanel.cs @@ -80,6 +80,7 @@ namespace osu.Game.Overlays.Mods public override IEnumerable FilterTerms => new[] { Mod.Name, + Mod.Name.Replace(" ", string.Empty), Mod.Acronym, Mod.Description };