diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-11 02:54:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-11 03:00:41 +0300 |
commit | 6597e683da916a47705a23e67087b19a89bb0778 (patch) | |
tree | 5675167dbceeedf5e18e27d6c0770f5292ee035d /src/net/eathena/packetsin.inc | |
parent | 255660c6bd40f40188b5b9a4d89cb879d10924a5 (diff) | |
download | plus-6597e683da916a47705a23e67087b19a89bb0778.tar.gz plus-6597e683da916a47705a23e67087b19a89bb0778.tar.bz2 plus-6597e683da916a47705a23e67087b19a89bb0778.tar.xz plus-6597e683da916a47705a23e67087b19a89bb0778.zip |
Add packet SMSG_RODEX_MAIL_LIST_PAGE 0x09f0.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 210981c72..669d574a4 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -775,6 +775,9 @@ if (packetVersion >= 20130731) packet(SMSG_SKILL_ENTRY, 0x09ca, -1, &BeingRecv::processSkillEntry, 20130731); } +// 20131218 +packet(SMSG_RODEX_MAIL_LIST_PAGE, 0x09f0, -1, &Mail2Recv::processMailListPage, 20131218); + // 20131223 if (packetVersion >= 20131223) { @@ -935,6 +938,12 @@ if (packetVersion >= 20160316) packet(SMSG_RODEX_CHECK_NAME_RESULT, 0x0a51, 34, &Mail2Recv::processCheckNameResult, 20160316); } +// 20160601 +if (packetVersion >= 20160601) +{ + packet(SMSG_RODEX_MAIL_LIST_PAGE, 0x0a7d, -1, &Mail2Recv::processMailListPage, 20160601); +} + // 20170329 if (packetVersion >= 20170329) { |