diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-26 23:25:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-26 23:25:32 +0300 |
commit | 3ed2e647a7ec634a91a32e7ac493c9f2b6d693b0 (patch) | |
tree | d7f1400583c5bc6916129e05fc5e0907d1081ca9 /src/net/eathena/skillhandler.cpp | |
parent | 6112e911a5b702fa1a9fca7bb6300f0195cbe685 (diff) | |
download | plus-3ed2e647a7ec634a91a32e7ac493c9f2b6d693b0.tar.gz plus-3ed2e647a7ec634a91a32e7ac493c9f2b6d693b0.tar.bz2 plus-3ed2e647a7ec634a91a32e7ac493c9f2b6d693b0.tar.xz plus-3ed2e647a7ec634a91a32e7ac493c9f2b6d693b0.zip |
Fix code style.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r-- | src/net/eathena/skillhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp index e4e6c8101..b6e2b2cd2 100644 --- a/src/net/eathena/skillhandler.cpp +++ b/src/net/eathena/skillhandler.cpp @@ -202,8 +202,8 @@ void SkillHandler::processSkillFailed(Net::MessageIn &msg) { // Action failed (ex. sit because you have not reached the // right level) - const int skillId = msg.readInt16("skill id"); - const int16_t bskill = msg.readInt32("btype"); + const int skillId = msg.readInt16("skill id"); + const int 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) |