mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:02:54 +08:00
Fix missed renames
This commit is contained in:
parent
41a8a12df3
commit
5b409a5ae5
@ -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)));
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user