1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

remove null conditional

This commit is contained in:
LeNitrous 2019-09-09 06:14:49 +08:00
parent a67a2899a9
commit be4f0cc2dd

View File

@ -137,7 +137,7 @@ namespace osu.Game.Screens.Menu
}
}
if (last is IntroScreen && api?.State == APIState.Offline)
if (last is IntroScreen && api.State == APIState.Offline)
login?.ToggleVisibility();
Beatmap.ValueChanged += beatmap_ValueChanged;