mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
CurrentBeatmap -> Beatmap
This commit is contained in:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user