diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-15 12:35:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-15 12:35:41 +0300 |
commit | d23ec275ea4b350dc616e592714724d66de4599a (patch) | |
tree | 61665cefe98218929ed85647c7669b4b3a662102 /src/net/eathena/mailhandler.cpp | |
parent | a0f83483c5d9ae0a6b809c93e62697ba399ac246 (diff) | |
download | mv-d23ec275ea4b350dc616e592714724d66de4599a.tar.gz mv-d23ec275ea4b350dc616e592714724d66de4599a.tar.bz2 mv-d23ec275ea4b350dc616e592714724d66de4599a.tar.xz mv-d23ec275ea4b350dc616e592714724d66de4599a.zip |
eathena: add packet CMSG_MAIL_RESET_ATTACH 0x0246.
Diffstat (limited to 'src/net/eathena/mailhandler.cpp')
-rw-r--r-- | src/net/eathena/mailhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp index ea420cfc4..23e959538 100644 --- a/src/net/eathena/mailhandler.cpp +++ b/src/net/eathena/mailhandler.cpp @@ -113,4 +113,10 @@ void MailHandler::setAttach(const int index, const int amount) outMsg.writeInt32(amount, "amount"); } +void MailHandler::resetAttach(const int flag) +{ + MessageOut outMsg(CMSG_MAIL_RESET_ATTACH); + outMsg.writeInt16(static_cast<int16_t>(flag), "flag"); +} + } // namespace EAthena |