mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 23:47:30 +09:00
Remove null conditional
Shouldn't guard against that here.
This commit is contained in:
parent
dc56250a3c
commit
34d1490754
@ -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[]
|
||||
|
Loading…
x
Reference in New Issue
Block a user