diff options
author | Mattes D <github@xoft.cz> | 2014-07-16 13:30:57 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-16 13:30:57 +0200 |
commit | e444106d0924b1faecc61e50ca27a1d9c7fd7c9f (patch) | |
tree | 3d3aa66b0bf8ed4063fbda9ce2ddef62d9185fab /src/World.cpp | |
parent | Fixed a DropSpenser AddFace bug (diff) | |
parent | Suggestions (diff) | |
download | cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar.gz cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar.bz2 cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar.lz cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar.xz cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.tar.zst cuberite-e444106d0924b1faecc61e50ca27a1d9c7fd7c9f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.cpp b/src/World.cpp index bd3613ce2..f7279e9bc 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -2363,7 +2363,7 @@ void cWorld::RemovePlayer(cPlayer * a_Player) } { cCSLock Lock(m_CSPlayers); - LOGD("Removing player \"%s\" from world \"%s\".", a_Player->GetName().c_str(), m_WorldName.c_str()); + LOGD("Removing player %s from world \"%s\"", a_Player->GetName().c_str(), m_WorldName.c_str()); m_Players.remove(a_Player); } |