diff --git a/Assets/Mirror/Runtime/NetworkClient.cs b/Assets/Mirror/Runtime/NetworkClient.cs index f95bb8bb6..ce12b0773 100644 --- a/Assets/Mirror/Runtime/NetworkClient.cs +++ b/Assets/Mirror/Runtime/NetworkClient.cs @@ -1258,7 +1258,7 @@ internal static void NetworkLateUpdate() } } - // process all incoming messages after updating the world + // process all outgoing messages after updating the world if (Transport.activeTransport != null) Transport.activeTransport.ClientLateUpdate(); } diff --git a/Assets/Mirror/Runtime/NetworkServer.cs b/Assets/Mirror/Runtime/NetworkServer.cs index 0962e6ac9..8ec13bf1d 100644 --- a/Assets/Mirror/Runtime/NetworkServer.cs +++ b/Assets/Mirror/Runtime/NetworkServer.cs @@ -1558,7 +1558,7 @@ internal static void NetworkLateUpdate() if (active) Broadcast(); - // process all incoming messages after updating the world + // process all outgoing messages after updating the world // (even if not active. still want to process disconnects etc.) if (Transport.activeTransport != null) Transport.activeTransport.ServerLateUpdate();