1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:03:08 +08:00

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)));

View File

@ -53,7 +53,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
RightFlowContainer.Add(text);
RightFlowContainer.SetLayoutPosition(text, 1);
LeftFlowContainer.Add(new BeatmapMetadataContainer(Score.Beatmap));
LeftFlowContainer.Add(new BeatmapMetadataContainer(Score.BeatmapInfo));
LeftFlowContainer.Add(new DrawableDate(Score.Date));
foreach (Mod mod in Score.Mods)

View File

@ -33,7 +33,7 @@ namespace osu.Game.Screens.Ranking
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Beatmap = Beatmap.BeatmapInfo ?? Score.Beatmap,
Beatmap = Beatmap.BeatmapInfo ?? Score.BeatmapInfo,
Scale = new Vector2(0.7f)
}
};