mirror of https://github.com/ppy/osu
Move null assert in `MultiplayerPlayer` on to update thread
This commit is contained in:
parent
64c63fe93a
commit
24c2d465a9
|
@ -133,6 +133,11 @@ protected override void LoadAsyncComplete()
|
|||
failAndBail();
|
||||
}
|
||||
}), true);
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
Debug.Assert(client.Room != null);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue