summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/mailhandler.cpp7
-rw-r--r--src/net/eathena/mailhandler.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
index f49cc8a5e..5e8ae486e 100644
--- a/src/net/eathena/mailhandler.cpp
+++ b/src/net/eathena/mailhandler.cpp
@@ -265,6 +265,13 @@ void MailHandler::setAttach(const int index, const int amount)
outMsg.writeInt32(amount, "amount");
}
+void MailHandler::setAttachMoney(const int money)
+{
+ createOutPacket(CMSG_MAIL_SET_ATTACH);
+ outMsg.writeInt16(static_cast<int16_t>(0), "index");
+ outMsg.writeInt32(money, "money");
+}
+
void MailHandler::resetAttach(const int flag)
{
createOutPacket(CMSG_MAIL_RESET_ATTACH);
diff --git a/src/net/eathena/mailhandler.h b/src/net/eathena/mailhandler.h
index 92ecc9eef..3b0d17574 100644
--- a/src/net/eathena/mailhandler.h
+++ b/src/net/eathena/mailhandler.h
@@ -50,6 +50,8 @@ class MailHandler final : public MessageHandler, public Net::MailHandler
void setAttach(const int index, const int amount) override final;
+ void setAttachMoney(const int money) override final;
+
void resetAttach(const int flag) override final;
void send(const std::string &name,