diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-12 16:39:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-12 16:39:38 +0300 |
commit | e5598d8183f8b5a015bade5d61a41e054311d5ec (patch) | |
tree | 001cd660a5d7893fd7c3b0ae5d9924dfadd2068d /src/net/ea | |
parent | 750195bc4f8cc950830b2921f2432e4e23ba80ab (diff) | |
download | plus-e5598d8183f8b5a015bade5d61a41e054311d5ec.tar.gz plus-e5598d8183f8b5a015bade5d61a41e054311d5ec.tar.bz2 plus-e5598d8183f8b5a015bade5d61a41e054311d5ec.tar.xz plus-e5598d8183f8b5a015bade5d61a41e054311d5ec.zip |
Add packet SMSG_SKILL_NO_DAMAGE 0x09cb.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/beingrecv.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
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( |