diff options
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 1b19a4644..264da8a21 100644 --- a/src/net/eathena/mailhandler.cpp +++ b/src/net/eathena/mailhandler.cpp @@ -85,4 +85,10 @@ void MailHandler::readMessage(const int msgId) outMsg.writeInt32(msgId, "message id"); } +void MailHandler::getAttach(const int msgId) +{ + MessageOut outMsg(CMSG_MAIL_GET_ATTACH); + outMsg.writeInt32(msgId, "message id"); +} + } // namespace EAthena |