1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 23:01:03 +08:00

API can't be null on load

This commit is contained in:
Dean Herbert
2020-02-14 15:36:06 +09:00
Unverified
parent 6f1cecd86f
commit edf9cfc863
+1 -1
View File
@@ -44,7 +44,7 @@ namespace osu.Game.Online
protected override void LoadComplete()
{
API?.Register(this);
API.Register(this);
base.LoadComplete();
}