diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-19 11:05:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-19 11:05:44 +0300 |
commit | 78d916e95061fb3bec4ba7791a2f20bcbeaecb3c (patch) | |
tree | 43b9335fcc92e21796f8861edefad94471de5fb6 /src/net/tmwa | |
parent | 1e0a3842186c86e40eff6fa7894e578ae948d179 (diff) | |
download | mv-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.gz mv-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.bz2 mv-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.xz mv-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.zip |
eathena: add packet CMSG_CHAT_JOIN 0x00d9.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/chathandler.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/chathandler.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index 0d0c08d90..52089d365 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -453,4 +453,9 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg) processWhisperResponseContinue(type); } +void ChatHandler::joinChat(const ChatObject *const chat A_UNUSED, + const std::string &password A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/chathandler.h b/src/net/tmwa/chathandler.h index cebb0674f..15777c1e3 100644 --- a/src/net/tmwa/chathandler.h +++ b/src/net/tmwa/chathandler.h @@ -72,6 +72,9 @@ class ChatHandler final : public MessageHandler, public Ea::ChatHandler void battleTalk(const std::string &text) const override final; + void joinChat(const ChatObject *const chat, + const std::string &password) const override final; + protected: void processChat(Net::MessageIn &msg); |