mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 03:02:56 +08:00
Remove unnecessary delimiters from song select filter splitting
This commit is contained in:
parent
df24f7a81e
commit
5a60b39643
@ -56,7 +56,7 @@ namespace osu.Game.Screens.Select
|
||||
set
|
||||
{
|
||||
searchText = value;
|
||||
SearchTerms = searchText.Split(new[] { ',', ' ', '!' }, StringSplitOptions.RemoveEmptyEntries).ToArray();
|
||||
SearchTerms = searchText.Split(' ', StringSplitOptions.RemoveEmptyEntries).ToArray();
|
||||
|
||||
SearchNumber = null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user