diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-18 20:16:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-18 20:16:00 +0300 |
commit | e40ff3205395015708b4801a984c25f239089f50 (patch) | |
tree | 17ff37e40c797d0b691c6cea22bd1a58ec2e05f4 /src/net/eathena/packetsout.inc | |
parent | 34891cab564d7ed5752d4f161f2b76e727830e50 (diff) | |
download | plus-e40ff3205395015708b4801a984c25f239089f50.tar.gz plus-e40ff3205395015708b4801a984c25f239089f50.tar.bz2 plus-e40ff3205395015708b4801a984c25f239089f50.tar.xz plus-e40ff3205395015708b4801a984c25f239089f50.zip |
Add packet CMSG_MAP_BLOCK_PLAY_CANCEL 0x0447.
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 ef9ce6c14..34ac2b436 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -333,6 +333,7 @@ packet(CMSG_MAIL2_CANCEL_WRITE_MAIL, 0x0000, 0, nullptr); packet(CMSG_CLAN_MESSAGE, 0x0000, 0, nullptr); packet(CMSG_WINDOW_OPEN_REQUEST2, 0x0000, 0, nullptr); packet(CMSG_ATTENDANCE_REWARD, 0x0000, 0, nullptr); +packet(CMSG_MAP_BLOCK_PLAY_CANCEL, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -564,6 +565,12 @@ if (packetVersion >= 20081210) packet(CMSG_SKILL_SELECT_MENU, 0x0443, 8, clif->pSkillSelectMenu); } +// 20090520 +if (packetVersion >= 20090520) +{ + packet(CMSG_MAP_BLOCK_PLAY_CANCEL, 0x0447, 2, clif->p_cz_blocking_play_cancel); +} + // 20090603 if (packetVersion >= 20090603) { |