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

remove excessive null check

This commit is contained in:
EVAST9919 2019-06-04 21:46:43 +03:00
parent 05aeb66973
commit e20a899265

View File

@ -152,7 +152,7 @@ namespace osu.Game.Overlays
}
}
gamemodeControl.SetDefaultGamemode(user?.PlayMode ?? "osu");
gamemodeControl.SetDefaultGamemode(user.PlayMode ?? "osu");
gamemodeControl.SelectDefaultGamemode();
gamemodeControl.FadeInFromZero(100, Easing.OutQuint);