summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-16 10:35:33 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-16 10:35:33 +0100
commit3c4bfd979987cd92948ff9881dab035b58b57f41 (patch)
treefa98f207fd17e213bca2e149f828d5d80eb35d60 /source
parentNo longer using pointers for Vector3(f/d/i) in cEntity's and cTracer (diff)
downloadcuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar.gz
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar.bz2
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar.lz
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar.xz
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.tar.zst
cuberite-3c4bfd979987cd92948ff9881dab035b58b57f41.zip
Diffstat (limited to 'source')
-rw-r--r--source/cServer.cpp2
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;