summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsin.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-11-04 21:19:56 +0300
committerAndrei Karas <akaras@inbox.ru>2016-11-04 21:19:56 +0300
commit165eef78d8860585fcde8f1e7b128723c240777d (patch)
tree36a22c47d060ef1f4b569f19041f47c26c67ec0a /src/net/eathena/packetsin.inc
parentc5a5274c86201b74325a8b84ab4543c73959c5d5 (diff)
downloadplus-165eef78d8860585fcde8f1e7b128723c240777d.tar.gz
plus-165eef78d8860585fcde8f1e7b128723c240777d.tar.bz2
plus-165eef78d8860585fcde8f1e7b128723c240777d.tar.xz
plus-165eef78d8860585fcde8f1e7b128723c240777d.zip
Fix version for packet SMSG_SKILL_NO_DAMAGE in some cases.
Before was version auto detection and this is wrong.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r--src/net/eathena/packetsin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index ceeff5483..abcaed79f 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -269,7 +269,7 @@ packet(SMSG_SKILL_FAILED, 0x0110, 10, &SkillRecv::processSkill
packet(SMSG_SKILL_GROUND_DAMAGE_UNUSED, 0x0115, 35, nullptr, 0);
packet(SMSG_SKILL_GROUND_NO_DAMAGE, 0x0117, 18, &BeingRecv::processSkillGroundNoDamage, 0);
packet(SMSG_SKILL_MEMO_MESSAGE, 0x011e, 3, &SkillRecv::processSkillMemoMessage, 0);
-packet(SMSG_SKILL_NO_DAMAGE, 0x011a, 15, &Ea::BeingRecv::processSkillNoDamage, 0);
+packet(SMSG_SKILL_NO_DAMAGE, 0x011a, 15, &Ea::BeingRecv::processSkillNoDamage, 1);
packet(SMSG_SKILL_UNIT_UPDATE, 0x01ac, 6, &SkillRecv::processSkillUnitUpdate, 0);
packet(SMSG_SKILL_WARP_POINT, 0x011c, 68, &SkillRecv::processSkillWarpPoint, 0);
packet(SMSG_SOLVE_CHAR_NAME, 0x0194, 30, &BeingRecv::processSolveCharName, 0);