KcpPeer: fix log message.

This commit is contained in:
vis2k 2023-03-19 11:19:22 +08:00
parent 638b3536a5
commit 660b57ecb7

View File

@ -554,7 +554,7 @@ void OnRawInputUnreliable(ArraySegment<byte> message)
// invalid unreliable messages may be random internet noise.
// show a warning, but don't disconnect.
// otherwise attackers could disconnect someone with random noise.
Log.Warning($"KcpPeer: received unreliable message while not authenticated. Disconnecting the connection.");
Log.Warning($"KcpPeer: received unreliable message while not authenticated.");
}
}