diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index 328a9b1d3e..6d7c26b51b 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -259,8 +259,8 @@ namespace osu.Game.Overlays { var beatmapSets = getBeatmapSets(allowProtectedTracks); - playableSet = beatmapSets.TakeWhile(i => !i.Value.Equals(current?.BeatmapSetInfo)).LastOrDefault(s => !s.Value.Protected || allowProtectedTracks) - ?? beatmapSets.LastOrDefault(s => !s.Value.Protected || allowProtectedTracks); + playableSet = beatmapSets.TakeWhile(i => !i.Value.Equals(current?.BeatmapSetInfo)).LastOrDefault() + ?? beatmapSets.LastOrDefault(); } if (playableSet != null)