diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-19 23:50:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-19 23:50:53 +0300 |
commit | c9433013925e52857a85a30a29e1265081091e14 (patch) | |
tree | b3300a86fcc6ce06b820b390e5fd36778ce97b0e /src/net/eathena/packetsout.inc | |
parent | 0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1 (diff) | |
download | plus-c9433013925e52857a85a30a29e1265081091e14.tar.gz plus-c9433013925e52857a85a30a29e1265081091e14.tar.bz2 plus-c9433013925e52857a85a30a29e1265081091e14.tar.xz plus-c9433013925e52857a85a30a29e1265081091e14.zip |
Add packet CMSG_PLAYER_LESS_EFFECTS 0x021d.
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 032f9f3ab..889179353 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -288,6 +288,7 @@ packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0000, 0, nullptr); packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0000, 0, nullptr); packet(CMSG_PARTY_INVITE2, 0x0000, 0, nullptr); packet(CMSG_SKILL_FEEL_SAVE_OK, 0x0000, 0, nullptr); +packet(CMSG_PLAYER_LESS_EFFECTS, 0x0000, 0, nullptr); #else // 20040726 if (packetVersion >= 20040726) @@ -308,6 +309,12 @@ if (packetVersion >= 20041108) packet(CMSG_BLACKSMITH_RANKS, 0x0217, 2, clif->pBlacksmith); } +// 20041115 +if (packetVersion >= 20041115) +{ + packet(CMSG_PLAYER_LESS_EFFECTS, 0x021d, 6, clif->pLessEffect); +} + // 20041129 if (packetVersion >= 20041129) { |