From e5598d8183f8b5a015bade5d61a41e054311d5ec Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 12 Sep 2016 16:39:38 +0300 Subject: Add packet SMSG_SKILL_NO_DAMAGE 0x09cb. --- src/net/ea/beingrecv.cpp | 6 +++++- src/net/eathena/packetsin.inc | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src/net') diff --git a/src/net/ea/beingrecv.cpp b/src/net/ea/beingrecv.cpp index bc1229b5d..63d025556 100644 --- a/src/net/ea/beingrecv.cpp +++ b/src/net/ea/beingrecv.cpp @@ -380,7 +380,11 @@ void BeingRecv::processPlayerMoveToAttack(Net::MessageIn &msg) void BeingRecv::processSkillNoDamage(Net::MessageIn &msg) { const int id = msg.readInt16("skill id"); - const int heal = msg.readInt16("heal"); + int heal; + if (msg.getVersion() >= 20131223) + heal = msg.readInt32("heal"); + else + heal = msg.readInt16("heal"); Being *const dstBeing = actorManager->findBeing( msg.readBeingId("dst being id")); Being *const srcBeing = actorManager->findBeing( diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 6b3e35e71..2da521008 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -766,6 +766,7 @@ if (packetVersion >= 20131223) packet(SMSG_BEING_SPAWN, 0x09dc, -1, &BeingRecv::processBeingSpawn, 20131223); packet(SMSG_BEING_VISIBLE, 0x09dd, -1, &BeingRecv::processBeingVisible, 20131223); packet(SMSG_WHISPER_RESPONSE, 0x09df, 7, &ChatRecv::processWhisperResponse, 20131223); + packet(SMSG_SKILL_NO_DAMAGE, 0x09cb, 17, &Ea::BeingRecv::processSkillNoDamage, 20131223); } // 20141016 -- cgit v1.2.3-70-g09d2