summaryrefslogtreecommitdiffstats
path: root/src/Entities
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-07-16 13:30:57 +0200
committerMattes D <github@xoft.cz>2014-07-16 13:30:57 +0200
commite444106d0924b1faecc61e50ca27a1d9c7fd7c9f (patch)
tree3d3aa66b0bf8ed4063fbda9ce2ddef62d9185fab /src/Entities
parentFixed a DropSpenser AddFace bug (diff)
parentSuggestions (diff)
downloadcuberite-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 'src/Entities')
-rw-r--r--src/Entities/Player.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Player.cpp b/src/Entities/Player.cpp
index b1b7fc74e..f131a1829 100644
--- a/src/Entities/Player.cpp
+++ b/src/Entities/Player.cpp
@@ -130,7 +130,7 @@ cPlayer::~cPlayer(void)
if (!cRoot::Get()->GetPluginManager()->CallHookPlayerDestroyed(*this))
{
cRoot::Get()->BroadcastChatLeave(Printf("%s has left the game", GetName().c_str()));
- LOGINFO("Player %s has left the game.", GetName().c_str());
+ LOGINFO("Player %s has left the game", GetName().c_str());
}
LOGD("Deleting cPlayer \"%s\" at %p, ID %d", GetName().c_str(), this, GetUniqueID());
@@ -1804,7 +1804,7 @@ bool cPlayer::LoadFromFile(const AString & a_FileName)
cStatSerializer StatSerializer(cRoot::Get()->GetDefaultWorld()->GetName(), GetName(), &m_Stats);
StatSerializer.Load();
- LOGD("Player \"%s\" was read from file \"%s\", spawning at {%.2f, %.2f, %.2f} in world \"%s\"",
+ LOGD("Player %s was read from file \"%s\", spawning at {%.2f, %.2f, %.2f} in world \"%s\"",
GetName().c_str(), a_FileName.c_str(), GetPosX(), GetPosY(), GetPosZ(), m_LoadedWorldName.c_str()
);