diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-11 20:18:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-11 20:18:44 +0300 |
commit | abb284e237e02cd78a975a703e349b799f7f446d (patch) | |
tree | 8a09ed733adda1f77c26302fe207948875f28202 /src/net/eathena/packetsout.inc | |
parent | 0389a3eda12eb7f9ca3dcb8ad6b6817c41532071 (diff) | |
download | plus-abb284e237e02cd78a975a703e349b799f7f446d.tar.gz plus-abb284e237e02cd78a975a703e349b799f7f446d.tar.bz2 plus-abb284e237e02cd78a975a703e349b799f7f446d.tar.xz plus-abb284e237e02cd78a975a703e349b799f7f446d.zip |
Add packet CMSG_MAIL2_READ_MAIL 0x09ea.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 8d382bab1..4effc3eea 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -323,6 +323,7 @@ packet(CMSG_MAIL2_ADD_ITEM_TO_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_SEND_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_NEXT_PAGE, 0x0000, 0, nullptr); +packet(CMSG_MAIL2_READ_MAIL, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1181,6 +1182,11 @@ if (packetVersion >= 20131223) packet(CMSG_STORAGE_PASSWORD, 0x08a4, 36, clif->pStoragePassword); } +if (packetVersion >= 20131223) +{ + packet(CMSG_MAIL2_READ_MAIL, 0x09ea, 11, clif->pRodexReadMail); +} + // 20131230 if (packetVersion >= 20131230) { |