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

Remove autoplay consideration from Player

This commit is contained in:
Dean Herbert 2021-05-25 18:09:37 +09:00
parent a3c78674a1
commit c2b938a29f

View File

@ -161,9 +161,7 @@ namespace osu.Game.Screens.Play
if (!LoadedBeatmapSuccessfully)
return;
// replays should never be recorded or played back when autoplay is enabled
if (!Mods.Value.Any(m => m is ModAutoplay))
PrepareReplay();
PrepareReplay();
gameActive.BindValueChanged(_ => updatePauseOnFocusLostState(), true);
}