Fix missed renames

This commit is contained in:
smoogipoo
2018-11-28 17:27:22 +09:00
parent 41a8a12df3
commit 5b409a5ae5
3 changed files with 4 additions and 4 deletions

View File

@ -267,7 +267,7 @@ namespace osu.Game
return;
}
if (score.Beatmap == null)
if (score.BeatmapInfo == null)
{
notifications.Post(new SimpleNotification
{
@ -279,7 +279,7 @@ namespace osu.Game
ruleset.Value = score.Ruleset;
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(score.Beatmap);
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(score.BeatmapInfo);
Beatmap.Value.Mods.Value = score.Mods;
menu.Push(new PlayerLoader(new ReplayPlayer(score.Replay)));