summaryrefslogtreecommitdiff
path: root/src/net/eathena/mailhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/mailhandler.cpp')
-rw-r--r--src/net/eathena/mailhandler.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
index ee8adee14..006c5e9a2 100644
--- a/src/net/eathena/mailhandler.cpp
+++ b/src/net/eathena/mailhandler.cpp
@@ -97,4 +97,11 @@ void MailHandler::deleteMessage(const int msgId)
outMsg.writeInt32(msgId, "message id");
}
+void MailHandler::returnMessage(const int msgId)
+{
+ MessageOut outMsg(CMSG_MAIL_RETURN_MESSAGE);
+ outMsg.writeInt32(msgId, "message id");
+ outMsg.writeString("", 24, "unused");
+}
+
} // namespace EAthena