diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-05 19:04:12 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-05 19:04:12 +0200 |
commit | eff79ee55f165cc2f8770ffa99abaf99ad8d349a (patch) | |
tree | c63295a97fbaf9be5ae80abdb7b1852e5a52e641 /source | |
parent | Reduced the amount of tables. (diff) | |
download | cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar.gz cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar.bz2 cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar.lz cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar.xz cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.tar.zst cuberite-eff79ee55f165cc2f8770ffa99abaf99ad8d349a.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Player.cpp b/source/Player.cpp index 865ff24d6..1a051f95b 100644 --- a/source/Player.cpp +++ b/source/Player.cpp @@ -896,7 +896,7 @@ bool cPlayer::MoveToWorld(const char * a_WorldName) cWorld * World = cRoot::Get()->GetWorld(a_WorldName); if (World == NULL) { - LOG("%s: Couldn't find world \"%s\".", a_WorldName); + LOG("%s: Couldn't find world \"%s\".", __FUNCTION__, a_WorldName); return false; } |