summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-06 02:50:51 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-06 02:50:51 +0300
commit7092b86c5b9bcfc1b377d090f65ce35427cecc4c (patch)
tree595b792c8a7fe5ac159fcb97b2b9df44b114dcf6 /src/net/eathena/skillhandler.cpp
parent1c00cf20fb58492489f8137161c552fe4d70d2cb (diff)
downloadManaVerse-7092b86c5b9bcfc1b377d090f65ce35427cecc4c.tar.gz
ManaVerse-7092b86c5b9bcfc1b377d090f65ce35427cecc4c.tar.bz2
ManaVerse-7092b86c5b9bcfc1b377d090f65ce35427cecc4c.tar.xz
ManaVerse-7092b86c5b9bcfc1b377d090f65ce35427cecc4c.zip
eathena: fix skills removing.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r--src/net/eathena/skillhandler.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index 1f2d9a8ba..a66987f71 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -100,10 +100,12 @@ void SkillHandler::useMap(const int id, const std::string &map) const
void SkillHandler::processPlayerSkills(Net::MessageIn &msg)
{
- msg.readInt16(); // length
+ msg.readInt16("len");
const int skillCount = (msg.getLength() - 4) / 37;
int updateSkill = 0;
+ if (skillDialog)
+ skillDialog->hideSkills();
for (int k = 0; k < skillCount; k++)
{
const int skillId = msg.readInt16("skill id");