diff options
Diffstat (limited to 'src/net/eathena/mail2handler.cpp')
-rw-r--r-- | src/net/eathena/mail2handler.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/mail2handler.cpp b/src/net/eathena/mail2handler.cpp index fc63d5912..09e8df11c 100644 --- a/src/net/eathena/mail2handler.cpp +++ b/src/net/eathena/mail2handler.cpp @@ -139,4 +139,17 @@ void Mail2Handler::nextPage(const int openType, outMsg.writeInt64(mailId, "mail id"); } +void Mail2Handler::readMail(const int openType, + const int64_t mailId) const +{ + if (packetVersion < 20131223 || + serverVersion < 19) + { + return; + } + createOutPacket(CMSG_MAIL2_READ_MAIL); + outMsg.writeInt8(openType, "open type"); + outMsg.writeInt64(mailId, "mail id"); +} + } // namespace EAthena |