From 64d47f267be567cf259de29982acfed7eb76111e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 11 Sep 2014 17:52:30 +0300 Subject: eathena: add packet CMSG_ADMIN_MUTE_NAME 0x0212. --- src/net/eathena/adminhandler.cpp | 6 ++++++ src/net/eathena/adminhandler.h | 1 + src/net/eathena/protocol.h | 1 + 3 files changed, 8 insertions(+) (limited to 'src/net/eathena') diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index c4b55def4..d99af7d1e 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -147,4 +147,10 @@ void AdminHandler::mute(const Being *const being, outMsg.writeInt16(limit, "value"); } +void AdminHandler::muteName(const std::string &name) const +{ + MessageOut outMsg(CMSG_ADMIN_MUTE_NAME); + outMsg.writeString(name, 24, "name"); +} + } // namespace EAthena diff --git a/src/net/eathena/adminhandler.h b/src/net/eathena/adminhandler.h index 54c06e02f..819c02ad8 100644 --- a/src/net/eathena/adminhandler.h +++ b/src/net/eathena/adminhandler.h @@ -64,6 +64,7 @@ class AdminHandler final : public MessageHandler, public Ea::AdminHandler const int type, const int limit) const override final; + void muteName(const std::string &name) const override final; }; } // namespace EAthena diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index b572f4958..fcfced256 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -306,6 +306,7 @@ #define CMSG_ADMIN_GOTO 0x01bb #define CMSG_ADMIN_RECALL 0x01bd #define CMSG_ADMIN_MUTE 0x0149 +#define CMSG_ADMIN_MUTE_NAME 0x0212 #define CMSG_GUILD_CHECK_MASTER 0x014d #define CMSG_GUILD_REQUEST_INFO 0x014f -- cgit v1.2.3-70-g09d2