diff options
-rw-r--r-- | source/cServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cServer.cpp b/source/cServer.cpp index 0836900e3..69f19028d 100644 --- a/source/cServer.cpp +++ b/source/cServer.cpp @@ -459,7 +459,7 @@ void cServer::ServerCommand( const char * a_Cmd ) {
virtual bool Item(cPlayer * a_Player) override
{
- LOG("\t%s @ %s", a_Player->GetName().c_str(), a_Player->GetClientHandle()->GetSocket().GetIPString());
+ LOG("\t%s @ %s", a_Player->GetName().c_str(), a_Player->GetClientHandle()->GetSocket().GetIPString().c_str());
return false;
}
} Logger;
|