Remove null conditional

Shouldn't guard against that here.
This commit is contained in:
Salman Ahmed 2021-05-15 10:00:04 +03:00
parent dc56250a3c
commit 34d1490754

View File

@ -60,7 +60,7 @@ namespace osu.Game.Screens.Play
[BackgroundDependencyLoader]
private void load(BeatmapDifficultyCache difficultyCache)
{
var metadata = beatmap.BeatmapInfo?.Metadata ?? new BeatmapMetadata();
var metadata = beatmap.BeatmapInfo.Metadata;
AutoSizeAxes = Axes.Both;
Children = new Drawable[]