1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Call skip method directly

This commit is contained in:
BlauFx 2022-08-08 13:10:28 +02:00
parent bb344e064f
commit cd68134565
No known key found for this signature in database
GPG Key ID: BB73374479D2AA97

View File

@ -372,7 +372,7 @@ namespace osu.Game.Screens.Play
if (Configuration.AutomaticallySkipIntro && e.NewValue && RestartCount > 0)
{
Configuration.AutomaticallySkipIntro = false;
skipIntroOverlay.RequestSkip.Invoke();
performUserRequestedSkip();
}
};
}