aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Chat/Commands
diff options
context:
space:
mode:
authorleak <leakzx@googlemail.com>2011-04-29 19:59:40 +0200
committerleak <leakzx@googlemail.com>2011-04-29 19:59:40 +0200
commit01a79947d56eae6ed9f47dc2b41897d77cc91f41 (patch)
tree5a932eaa631d371b0ffa17d74e7726adf5fc3d55 /src/server/game/Chat/Commands
parent6fb2bf4224b20c0ccecfceaca8d39ae27b8677ea (diff)
More cleanup after last commit spree
Diffstat (limited to 'src/server/game/Chat/Commands')
-rwxr-xr-xsrc/server/game/Chat/Commands/Level3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Chat/Commands/Level3.cpp b/src/server/game/Chat/Commands/Level3.cpp
index caef8650d29..778a7007cce 100755
--- a/src/server/game/Chat/Commands/Level3.cpp
+++ b/src/server/game/Chat/Commands/Level3.cpp
@@ -656,9 +656,9 @@ bool ChatHandler::HandleListObjectCommand(const char *args)
uint32 entry = fields[5].GetUInt32();
if (m_session)
- PSendSysMessage(LANG_GO_LIST_CHAT, guid, entry, guid, gInfo->name, x, y, z, mapid);
+ PSendSysMessage(LANG_GO_LIST_CHAT, guid, entry, guid, gInfo->name.c_str(), x, y, z, mapid);
else
- PSendSysMessage(LANG_GO_LIST_CONSOLE, guid, gInfo->name, x, y, z, mapid);
+ PSendSysMessage(LANG_GO_LIST_CONSOLE, guid, gInfo->name.c_str(), x, y, z, mapid);
} while (result->NextRow());
}