summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-11 23:00:00 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-11 23:00:00 +0300
commitf96c3bf4bdccbf983b21b103d3ba748153e81f1c (patch)
tree7c5e216ee6ed5e2217577eccad38b025d8090930 /src/net/tmwa
parente597401af5d0005f3f6039cc0e76d8ecfaae66ef (diff)
downloadplus-f96c3bf4bdccbf983b21b103d3ba748153e81f1c.tar.gz
plus-f96c3bf4bdccbf983b21b103d3ba748153e81f1c.tar.bz2
plus-f96c3bf4bdccbf983b21b103d3ba748153e81f1c.tar.xz
plus-f96c3bf4bdccbf983b21b103d3ba748153e81f1c.zip
eathena: add packet CMSG_REQUEST_IGNORE_LIST 0x00d3.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/chathandler.cpp4
-rw-r--r--src/net/tmwa/chathandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp
index 1635cdbc1..61e81428d 100644
--- a/src/net/tmwa/chathandler.cpp
+++ b/src/net/tmwa/chathandler.cpp
@@ -260,6 +260,10 @@ void ChatHandler::unIgnore(const std::string &nick) const
outMsg.writeInt8(1, "flag");
}
+void ChatHandler::requestIgnoreList() const
+{
+}
+
void ChatHandler::createChatRoom(const std::string &title A_UNUSED,
const std::string &password A_UNUSED,
const int limit A_UNUSED,
diff --git a/src/net/tmwa/chathandler.h b/src/net/tmwa/chathandler.h
index 95989835f..777052b98 100644
--- a/src/net/tmwa/chathandler.h
+++ b/src/net/tmwa/chathandler.h
@@ -68,6 +68,8 @@ class ChatHandler final : public MessageHandler, public Ea::ChatHandler
void unIgnore(const std::string &nick) const override final;
+ void requestIgnoreList() const override final;
+
protected:
void processChat(Net::MessageIn &msg);