1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 00:33:21 +08:00

Add missing exit line causing completely incorrect behaviour

This commit is contained in:
Dean Herbert 2024-08-07 23:29:24 +09:00
parent 5a63c25f49
commit cfd7f96e76
No known key found for this signature in database

View File

@ -559,6 +559,7 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
// If the import was for a different beatmap, pass the duty off to global handling.
if (beatmap.BeatmapSetInfo.OnlineID != playlistItem.Beatmap.BeatmapSet!.OnlineID)
{
this.Exit();
game?.PresentBeatmap(beatmap.BeatmapSetInfo, b => b.ID == beatmap.BeatmapInfo.ID);
}