diff --git a/osu.Game/Screens/Play/Player.cs b/osu.Game/Screens/Play/Player.cs index 7bd310e168..4b04b3b2ea 100644 --- a/osu.Game/Screens/Play/Player.cs +++ b/osu.Game/Screens/Play/Player.cs @@ -35,8 +35,6 @@ namespace osu.Game.Screens.Play internal override bool HasLocalCursorDisplayed => !pauseContainer.IsPaused && !HasFailed && HitRenderer.ProvidingUserCursor; - public BeatmapInfo BeatmapInfo; - public Action RestartRequested; internal override bool AllowBeatmapRulesetChange => false; @@ -85,7 +83,7 @@ namespace osu.Game.Screens.Play { if (!Beatmap.Value.WithStoryboard) // we need to ensure the storyboard is loaded. - Beatmap.Value = beatmaps.GetWorkingBeatmap(BeatmapInfo, withStoryboard: true); + Beatmap.Value = beatmaps.GetWorkingBeatmap(Beatmap.Value.BeatmapInfo, withStoryboard: true); if (Beatmap.Value.Beatmap == null) throw new InvalidOperationException("Beatmap was not loaded");