summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-23 19:36:38 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-23 19:36:38 +0300
commit0cb2889cdef920918d3697fad42f83e83602d630 (patch)
treeb6dcde88a26fc94f4db4b1d0d41737d05efeed70 /src/net/eathena/skillhandler.cpp
parent402edcfffd8e00a3624d2442cf06377a9e19436e (diff)
downloadManaVerse-0cb2889cdef920918d3697fad42f83e83602d630.tar.gz
ManaVerse-0cb2889cdef920918d3697fad42f83e83602d630.tar.bz2
ManaVerse-0cb2889cdef920918d3697fad42f83e83602d630.tar.xz
ManaVerse-0cb2889cdef920918d3697fad42f83e83602d630.zip
eathena: fix processSkillFailed.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r--src/net/eathena/skillhandler.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index 663e95876..e5025cd9a 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -195,11 +195,10 @@ void SkillHandler::processSkillFailed(Net::MessageIn &msg)
{
// Action failed (ex. sit because you have not reached the
// right level)
- const int skillId = msg.readInt16();
- const int16_t bskill = msg.readInt16();
- msg.readInt16(); // btype
- const signed char success = msg.readUInt8();
- const signed char reason = msg.readUInt8();
+ const int skillId = msg.readInt16("skill id");
+ const int16_t bskill = msg.readInt32("btype");
+ const signed char success = msg.readUInt8("success");
+ const signed char reason = msg.readUInt8("reason");
if (success != static_cast<int>(SKILL_FAILED)
&& bskill == static_cast<int>(BSKILL_EMOTE))
{