diff --git a/Assets/Mirror/Runtime/NetworkClient.cs b/Assets/Mirror/Runtime/NetworkClient.cs index 4beccbf8a..27228caef 100644 --- a/Assets/Mirror/Runtime/NetworkClient.cs +++ b/Assets/Mirror/Runtime/NetworkClient.cs @@ -254,7 +254,7 @@ public void UnregisterHandler(MsgType msgType) UnregisterHandler((short)msgType); } - internal static void UpdateClients() + internal static void UpdateClient() { singleton?.Update(); } diff --git a/Assets/Mirror/Runtime/NetworkIdentity.cs b/Assets/Mirror/Runtime/NetworkIdentity.cs index b2a29ab09..305cd0cbc 100644 --- a/Assets/Mirror/Runtime/NetworkIdentity.cs +++ b/Assets/Mirror/Runtime/NetworkIdentity.cs @@ -937,7 +937,7 @@ internal void UNetUpdate() public static void UNetStaticUpdate() { NetworkServer.Update(); - NetworkClient.UpdateClients(); + NetworkClient.UpdateClient(); NetworkManager.UpdateScene(); } }