diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-14 17:27:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-14 17:27:52 +0300 |
commit | 0381a0de69cc21c8886fb0a68cda450d3135d55a (patch) | |
tree | 7c9883d4043b925b9148715664b621876c680d20 /src/net/tmwa | |
parent | ecac984465f2a9f51940515abdf7552e5c6341a1 (diff) | |
download | plus-0381a0de69cc21c8886fb0a68cda450d3135d55a.tar.gz plus-0381a0de69cc21c8886fb0a68cda450d3135d55a.tar.bz2 plus-0381a0de69cc21c8886fb0a68cda450d3135d55a.tar.xz plus-0381a0de69cc21c8886fb0a68cda450d3135d55a.zip |
For trade tab use channel to send messages.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/chathandler.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index dafa31cf5..a48aa5426 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -26,6 +26,8 @@ #include "being/localplayer.h" +#include "gui/chatconsts.h" + #include "gui/widgets/tabs/chat/chattab.h" #include "gui/windows/chatwindow.h" @@ -163,9 +165,11 @@ void ChatHandler::privateMessage(const std::string &restrict recipient, mSentWhispers.push(recipient); } -void ChatHandler::channelMessage(const std::string &restrict channel A_UNUSED, - const std::string &restrict text A_UNUSED) +void ChatHandler::channelMessage(const std::string &restrict channel, + const std::string &restrict text) { + if (channel == TRADE_CHANNEL) + talk("\302\202" + text, GENERAL_CHANNEL); } void ChatHandler::who() const |