diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-06 13:29:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 13:29:42 +0300 |
commit | 83a6463a88b4b5eda003f55b419995c13476d917 (patch) | |
tree | 94df4a85319146e17ebe89ce82c6c3a0e1d9b138 /src/net/tmwa | |
parent | 8a23a928d99d79b0d48961a225c3656ca42f34f0 (diff) | |
download | plus-83a6463a88b4b5eda003f55b419995c13476d917.tar.gz plus-83a6463a88b4b5eda003f55b419995c13476d917.tar.bz2 plus-83a6463a88b4b5eda003f55b419995c13476d917.tar.xz plus-83a6463a88b4b5eda003f55b419995c13476d917.zip |
In skills add support for reading mana cost from server.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/skillhandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tmwa/skillhandler.cpp b/src/net/tmwa/skillhandler.cpp index 65f86d4bc..da6a04b7e 100644 --- a/src/net/tmwa/skillhandler.cpp +++ b/src/net/tmwa/skillhandler.cpp @@ -113,7 +113,7 @@ void SkillHandler::processPlayerSkills(Net::MessageIn &msg) msg.readInt16()); msg.skip(2); // skill pool flags const int level = msg.readInt16(); - msg.readInt16(); // sp + const int sp = msg.readInt16(); const int range = msg.readInt16(); msg.skip(24); // 0 unused const int up = msg.readUInt8(); @@ -123,8 +123,8 @@ void SkillHandler::processPlayerSkills(Net::MessageIn &msg) PlayerInfo::setSkillLevel(skillId, level); if (skillDialog) { - if (!skillDialog->updateSkill(skillId, range, up, inf)) - skillDialog->addSkill(skillId, "", level, range, up, inf); + if (!skillDialog->updateSkill(skillId, range, up, inf, sp)) + skillDialog->addSkill(skillId, "", level, range, up, inf, sp); } } if (updateSkill && skillDialog) |