Move null assert in `MultiplayerPlayer` on to update thread

This commit is contained in:
Dean Herbert 2022-04-08 14:53:14 +09:00
parent 64c63fe93a
commit 24c2d465a9
1 changed files with 5 additions and 0 deletions

View File

@ -133,6 +133,11 @@ protected override void LoadAsyncComplete()
failAndBail();
}
}), true);
}
protected override void LoadComplete()
{
base.LoadComplete();
Debug.Assert(client.Room != null);
}