mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 19:22:56 +08:00
Add filter checks to difficulty selection
This commit is contained in:
parent
4c1f00567b
commit
7173829896
@ -197,7 +197,7 @@ namespace osu.Game.Screens.Select
|
|||||||
if (skipDifficulties)
|
if (skipDifficulties)
|
||||||
select(set);
|
select(set);
|
||||||
else
|
else
|
||||||
select(direction > 0 ? set.Beatmaps.First() : set.Beatmaps.Last());
|
select(direction > 0 ? set.Beatmaps.First(b => !b.Filtered) : set.Beatmaps.Last(b => !b.Filtered));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user