diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-24 21:58:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-24 21:58:41 +0300 |
commit | d3e9dc55ac13e99fd2634c87f4ffbff7e8781798 (patch) | |
tree | bf523e6a2349c75b584d653784a8ca51aa0e8b02 | |
parent | 94a3b513dda2189a49f8f5e0d131b9f644d60cef (diff) | |
download | plus-d3e9dc55ac13e99fd2634c87f4ffbff7e8781798.tar.gz plus-d3e9dc55ac13e99fd2634c87f4ffbff7e8781798.tar.bz2 plus-d3e9dc55ac13e99fd2634c87f4ffbff7e8781798.tar.xz plus-d3e9dc55ac13e99fd2634c87f4ffbff7e8781798.zip |
eathena: fix packet SMSG_HOMUNCULUS_SKILLS.
-rw-r--r-- | src/net/eathena/homunculushandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/eathena/homunculushandler.cpp b/src/net/eathena/homunculushandler.cpp index 6b752daad..7cdafb0aa 100644 --- a/src/net/eathena/homunculushandler.cpp +++ b/src/net/eathena/homunculushandler.cpp @@ -81,6 +81,7 @@ void HomunculusHandler::processHomunculusSkills(Net::MessageIn &msg) const int skillId = msg.readInt16("skill id"); const SkillType::SkillType inf = static_cast<SkillType::SkillType>( msg.readInt16("inf")); + msg.readInt16("unused"); const int level = msg.readInt16("skill level"); const int sp = msg.readInt16("sp"); const int range = msg.readInt16("range"); |