diff --git a/Assets/Mirror/Runtime/MessagePacker.cs b/Assets/Mirror/Runtime/MessagePacker.cs index 37c965384..e505ec1fb 100644 --- a/Assets/Mirror/Runtime/MessagePacker.cs +++ b/Assets/Mirror/Runtime/MessagePacker.cs @@ -123,7 +123,7 @@ public static bool UnpackMessage(NetworkReader messageReader, out int msgType) { if (requireAuthenication && !networkMessage.conn.isAuthenticated) { - // message requires authentication, but the connection was no authnticated + // message requires authentication, but the connection was not authenticated Debug.LogWarning($"Closing connection: {networkMessage.conn.connectionId}. Received message {typeof(T)} that required authentication, but the user has not authenticated yet"); networkMessage.conn.Disconnect(); return;