Update the beatmap of Daily Challenge's mods overlay when beatmap is set - #29094

This commit is contained in:
Cameron Brown 2024-07-26 18:10:11 +10:00
parent e489ae8f72
commit a8851950bc

View File

@ -379,6 +379,9 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
var beatmap = beatmapManager.QueryBeatmap(b => b.OnlineID == playlistItem.Beatmap.OnlineID);
Beatmap.Value = beatmapManager.GetWorkingBeatmap(beatmap); // this will gracefully fall back to dummy beatmap if missing locally.
Ruleset.Value = rulesets.GetRuleset(playlistItem.RulesetID);
userModsSelectOverlay.Beatmap.Value = Beatmap.Value;
applyLoopingToTrack();
}