1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix intro welcome playing double due to missing conditional

This commit is contained in:
Dean Herbert 2020-08-21 18:33:24 +09:00
parent d4a7e8cee8
commit 1edafc39ba

View File

@ -64,7 +64,8 @@ namespace osu.Game.Screens.Menu
}, t =>
{
AddInternal(t);
welcome?.Play();
if (!UsingThemedIntro)
welcome?.Play();
StartTrack();
});