NetworkClient.UpdateClients renamed to UpdateClient

This commit is contained in:
vis2k 2019-02-26 16:28:45 +01:00
parent db32754100
commit 70ecdd8f3a
2 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ public void UnregisterHandler(MsgType msgType)
UnregisterHandler((short)msgType);
}
internal static void UpdateClients()
internal static void UpdateClient()
{
singleton?.Update();
}

View File

@ -937,7 +937,7 @@ internal void UNetUpdate()
public static void UNetStaticUpdate()
{
NetworkServer.Update();
NetworkClient.UpdateClients();
NetworkClient.UpdateClient();
NetworkManager.UpdateScene();
}
}