mirror of https://github.com/ppy/osu
Fix intro welcome playing double due to missing conditional
This commit is contained in:
parent
d4a7e8cee8
commit
1edafc39ba
|
@ -64,7 +64,8 @@ protected override void LogoArriving(OsuLogo logo, bool resuming)
|
|||
}, t =>
|
||||
{
|
||||
AddInternal(t);
|
||||
welcome?.Play();
|
||||
if (!UsingThemedIntro)
|
||||
welcome?.Play();
|
||||
|
||||
StartTrack();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue