diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-03-11 22:41:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-11 22:41:33 +0300 |
commit | cadfffea5dc2c8982470f89ea742bf1c004d5c01 (patch) | |
tree | a7ee312b13d123790060c89674cebc30417f5cc3 /src | |
parent | 854902108c0607f18067f4b857a36f8db66ec920 (diff) | |
download | mv-cadfffea5dc2c8982470f89ea742bf1c004d5c01.tar.gz mv-cadfffea5dc2c8982470f89ea742bf1c004d5c01.tar.bz2 mv-cadfffea5dc2c8982470f89ea742bf1c004d5c01.tar.xz mv-cadfffea5dc2c8982470f89ea742bf1c004d5c01.zip |
Update packet SMSG_SKILL_CASTING
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eathena/packetsin.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 79ab7fc2a..b455bd9be 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1539,6 +1539,18 @@ if (packetVersionMain >= 20181128) packet(SMSG_PLAYER_SKILL_AUTO_SPELLS, 0x0afb, -1, &SkillRecv::processSkillAutoSpells2, 20181128); } +// 20181212 main +if (packetVersionMain >= 20181212) +{ + packet(SMSG_SKILL_CASTING, 0x0b1a, 29, &BeingRecv::processSkillCasting3, 20181212); +} + +// 20181212 re +if (packetVersionRe >= 20181212) +{ + packet(SMSG_SKILL_CASTING, 0x0b1a, 29, &BeingRecv::processSkillCasting3, 20181212); +} + // 20181212 zero if (packetVersionZero >= 20181212) { |