mirror of https://github.com/ppy/osu
fixed if statement format
This commit is contained in:
parent
e6f81abc3b
commit
cd94d6e2bc
|
@ -32,7 +32,7 @@ private void load(OsuGame? game, SessionStatics statics)
|
|||
Content.Add(card = new BeatmapCardNano((APIBeatmapSet)room.Playlist.Single().Beatmap.BeatmapSet!));
|
||||
Activated = () =>
|
||||
{
|
||||
if(statics.Get<bool>(Static.DailyChallengeIntroPlayed))
|
||||
if (statics.Get<bool>(Static.DailyChallengeIntroPlayed))
|
||||
game?.PerformFromScreen(s => s.Push(new DailyChallenge(room)), [typeof(MainMenu)]);
|
||||
else
|
||||
game?.PerformFromScreen(s => s.Push(new DailyChallengeIntro(room)), [typeof(MainMenu)]);
|
||||
|
|
Loading…
Reference in New Issue