1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 08:02:55 +08:00

API can't be null on load

This commit is contained in:
Dean Herbert 2020-02-14 15:36:06 +09:00
parent 6f1cecd86f
commit edf9cfc863

View File

@ -44,7 +44,7 @@ namespace osu.Game.Online
protected override void LoadComplete()
{
API?.Register(this);
API.Register(this);
base.LoadComplete();
}