mirror of
https://github.com/ppy/osu.git
synced 2026-06-09 20:54:47 +08:00
Fix beatmap difficulties not being split out on first load
Closes https://github.com/ppy/osu/issues/29728.
This commit is contained in:
@@ -137,6 +137,8 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
private void loadNewRoot()
|
||||
{
|
||||
beatmapsSplitOut = activeCriteria.SplitOutDifficulties;
|
||||
|
||||
// Ensure no changes are made to the list while we are initialising items.
|
||||
// We'll catch up on changes via subscriptions anyway.
|
||||
BeatmapSetInfo[] loadableSets = detachedBeatmapSets!.ToArray();
|
||||
@@ -726,7 +728,6 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
if (activeCriteria.SplitOutDifficulties != beatmapsSplitOut)
|
||||
{
|
||||
beatmapsSplitOut = activeCriteria.SplitOutDifficulties;
|
||||
loadNewRoot();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user