diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-11 21:58:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-11 21:58:05 +0300 |
commit | 1305ef0f6465f7053019a4b89176e6837f5ada7f (patch) | |
tree | 873b71c531bc4331c38cee73144d37360942209f /src/net/eathena/packetsout.inc | |
parent | 0d3db3288d4b626cbcfb3ee4a11f8d0ec760ae25 (diff) | |
download | plus-1305ef0f6465f7053019a4b89176e6837f5ada7f.tar.gz plus-1305ef0f6465f7053019a4b89176e6837f5ada7f.tar.bz2 plus-1305ef0f6465f7053019a4b89176e6837f5ada7f.tar.xz plus-1305ef0f6465f7053019a4b89176e6837f5ada7f.zip |
Add packet CMSG_MAIL2_CLOSE_MAILBOX 0x09e9.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index dfe9808a2..136d3f20d 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -329,6 +329,7 @@ packet(CMSG_MAIL2_REQUEST_MONEY, 0x0000, 0, nullptr); packet(CMSG_MAIL2_REQUEST_ITEMS, 0x0000, 0, nullptr); packet(CMSG_MAIL2_REFRESH_MAIL_LIST, 0x0000, 0, nullptr); packet(CMSG_MAIL2_OPEN_MAILBOX, 0x0000, 0, nullptr); +packet(CMSG_MAIL2_CLOSE_MAILBOX, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1138,6 +1139,12 @@ if (packetVersion >= 20130814) packet(CMSG_ADMIN_MONSTER_ITEM, 0x09ce, 102, clif->pGM_Monster_Item); } +// 20131211 +if (packetVersion >= 20131211) +{ + packet(CMSG_MAIL2_CLOSE_MAILBOX, 0x09e9, 2, clif->pRodexCloseMailbox); +} + // 20131218 if (packetVersion >= 20131218) { |