From 486de67d84cbdf409e39bc952e91f925876cacf0 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Wed, 24 Aug 2016 06:38:38 +0300 Subject: [PATCH] Make handshake log message less confusing --- apps/openmw-mp/Networking.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/openmw-mp/Networking.cpp b/apps/openmw-mp/Networking.cpp index 8af8e9595..5cf1ffeba 100644 --- a/apps/openmw-mp/Networking.cpp +++ b/apps/openmw-mp/Networking.cpp @@ -115,9 +115,8 @@ void Networking::Update(RakNet::Packet *packet) if (!player->isHandshaked()) { - LOG_MESSAGE_SIMPLE(Log::LOG_WARN, "Wrong auth for player %d, name: %s", - player->GetID(), - player->Npc()->mName.c_str()); + LOG_MESSAGE_SIMPLE(Log::LOG_WARN, "Have not completed handshake with player %d", + player->GetID()); //KickPlayer(player->guid); return; }