summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/mail2handler.cpp28
-rw-r--r--src/net/eathena/mail2handler.h14
2 files changed, 21 insertions, 21 deletions
diff --git a/src/net/eathena/mail2handler.cpp b/src/net/eathena/mail2handler.cpp
index a4a35b4c2..39f3123f0 100644
--- a/src/net/eathena/mail2handler.cpp
+++ b/src/net/eathena/mail2handler.cpp
@@ -126,7 +126,7 @@ void Mail2Handler::sendMail(const std::string &to,
outMsg.writeString(body, bodySz, "body");
}
-void Mail2Handler::nextPage(const int openType,
+void Mail2Handler::nextPage(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20131218 ||
@@ -135,11 +135,11 @@ void Mail2Handler::nextPage(const int openType,
return;
}
createOutPacket(CMSG_MAIL2_NEXT_PAGE);
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
outMsg.writeInt64(mailId, "mail id");
}
-void Mail2Handler::readMail(const int openType,
+void Mail2Handler::readMail(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20131223 ||
@@ -148,11 +148,11 @@ void Mail2Handler::readMail(const int openType,
return;
}
createOutPacket(CMSG_MAIL2_READ_MAIL);
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
outMsg.writeInt64(mailId, "mail id");
}
-void Mail2Handler::deleteMail(const int openType,
+void Mail2Handler::deleteMail(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20131218 ||
@@ -161,11 +161,11 @@ void Mail2Handler::deleteMail(const int openType,
return;
}
createOutPacket(CMSG_MAIL2_DELETE_MAIL);
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
outMsg.writeInt64(mailId, "mail id");
}
-void Mail2Handler::requestMoney(const int openType,
+void Mail2Handler::requestMoney(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20140326 ||
@@ -175,10 +175,10 @@ void Mail2Handler::requestMoney(const int openType,
}
createOutPacket(CMSG_MAIL2_REQUEST_MONEY);
outMsg.writeInt64(mailId, "mail id");
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
}
-void Mail2Handler::requestItems(const int openType,
+void Mail2Handler::requestItems(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20140326 ||
@@ -188,10 +188,10 @@ void Mail2Handler::requestItems(const int openType,
}
createOutPacket(CMSG_MAIL2_REQUEST_ITEMS);
outMsg.writeInt64(mailId, "mail id");
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
}
-void Mail2Handler::refreshMailList(const int openType,
+void Mail2Handler::refreshMailList(const MailOpenTypeT openType,
const int64_t mailId) const
{
if (packetVersion < 20131218 ||
@@ -200,11 +200,11 @@ void Mail2Handler::refreshMailList(const int openType,
return;
}
createOutPacket(CMSG_MAIL2_REFRESH_MAIL_LIST);
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
outMsg.writeInt64(mailId, "mail id");
}
-void Mail2Handler::openMailBox(const int openType) const
+void Mail2Handler::openMailBox(const MailOpenTypeT openType) const
{
if (packetVersion < 20140212 ||
(serverVersion < 19 && serverVersion != 0))
@@ -212,7 +212,7 @@ void Mail2Handler::openMailBox(const int openType) const
return;
}
createOutPacket(CMSG_MAIL2_OPEN_MAILBOX);
- outMsg.writeInt8(openType, "open type");
+ outMsg.writeInt8(toInt(openType, int8_t), "open type");
outMsg.writeInt64(0, "mail id");
}
diff --git a/src/net/eathena/mail2handler.h b/src/net/eathena/mail2handler.h
index 7525851d8..de4a26d12 100644
--- a/src/net/eathena/mail2handler.h
+++ b/src/net/eathena/mail2handler.h
@@ -48,25 +48,25 @@ class Mail2Handler final : public Net::Mail2Handler
const std::string &body,
const int64_t &money) const override final;
- void nextPage(const int openType,
+ void nextPage(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void readMail(const int openType,
+ void readMail(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void deleteMail(const int openType,
+ void deleteMail(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void requestMoney(const int openType,
+ void requestMoney(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void requestItems(const int openType,
+ void requestItems(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void refreshMailList(const int openType,
+ void refreshMailList(const MailOpenTypeT openType,
const int64_t mailId) const override final;
- void openMailBox(const int openType) const override final;
+ void openMailBox(const MailOpenTypeT openType) const override final;
void closeMailBox() const override final;