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
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ protected OnlineViewContainer(string placeholderMessage)
protected override void LoadComplete()
{
API?.Register(this);
API.Register(this);
base.LoadComplete();
}