diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-26 13:35:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-26 13:35:24 +0300 |
commit | 5190fe2cdac7c259d96619e4686f8543bdc96af4 (patch) | |
tree | 3a49895b4371fcd58a2446c0b3b0128ca1933568 /src/net/eathena/chathandler.cpp | |
parent | d4febba47388979b26cd4680cb8a6f20e548e399 (diff) | |
download | plus-5190fe2cdac7c259d96619e4686f8543bdc96af4.tar.gz plus-5190fe2cdac7c259d96619e4686f8543bdc96af4.tar.bz2 plus-5190fe2cdac7c259d96619e4686f8543bdc96af4.tar.xz plus-5190fe2cdac7c259d96619e4686f8543bdc96af4.zip |
Improve string usage in other files.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 19e5c2112..f88d40689 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -107,7 +107,8 @@ void ChatHandler::talk(const std::string &text) if (!player_node) return; - std::string mes = player_node->getName() + " : " + text; + std::string mes = std::string(player_node->getName()).append( + " : ").append(text); MessageOut outMsg(CMSG_CHAT_MESSAGE); // Added + 1 in order to let eAthena parse admin commands correctly |