1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:12:57 +08:00

Add non-whitespace search term for mods

This commit is contained in:
Dan Balasescu 2024-02-16 19:17:41 +09:00
parent c7f80087e1
commit 0fff9d4937
No known key found for this signature in database

View File

@ -80,6 +80,7 @@ namespace osu.Game.Overlays.Mods
public override IEnumerable<LocalisableString> FilterTerms => new[]
{
Mod.Name,
Mod.Name.Replace(" ", string.Empty),
Mod.Acronym,
Mod.Description
};