CurrentBeatmap -> Beatmap

This commit is contained in:
DrabWeb
2017-05-22 12:45:40 -03:00
parent 03f6cded84
commit 2c16d9c3a7
3 changed files with 7 additions and 7 deletions

View File

@ -214,11 +214,11 @@ namespace osu.Game.Screens.Multiplayer
flagContainer.Children = new[] { new DrawableFlag(room.Host.Country?.FlagName ?? @"__") { RelativeSizeAxes = Axes.Both } };
avatar.User = room.Host;
if (room.CurrentBeatmap != null)
if (room.Beatmap != null)
{
beatmapTitle.Current = localisation.GetUnicodePreference(room.CurrentBeatmap.TitleUnicode, room.CurrentBeatmap.Title);
beatmapTitle.Current = localisation.GetUnicodePreference(room.Beatmap.TitleUnicode, room.Beatmap.Title);
beatmapDash.Text = @" - ";
beatmapArtist.Current = localisation.GetUnicodePreference(room.CurrentBeatmap.ArtistUnicode, room.CurrentBeatmap.Artist);
beatmapArtist.Current = localisation.GetUnicodePreference(room.Beatmap.ArtistUnicode, room.Beatmap.Artist);
}
else
{