1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 09:22:58 +08:00

added DailyChallengeIntro to notification

This commit is contained in:
Ianlucht 2024-09-07 13:48:14 -06:00
parent 958bfde51d
commit 170737b68f

View File

@ -12,7 +12,6 @@ using osu.Game.Overlays.Notifications;
using osu.Game.Screens.Menu;
using osu.Game.Localisation;
namespace osu.Game.Screens.OnlinePlay.DailyChallenge
{
public partial class NewDailyChallengeNotification : SimpleNotification
@ -38,6 +37,7 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
game?.PerformFromScreen(s => s.Push(new DailyChallenge(room)), [typeof(MainMenu)]);
else
game?.PerformFromScreen(s => s.Push(new DailyChallengeIntro(room)), [typeof(MainMenu)]);
return true;
};
}