diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-29 01:33:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-29 18:12:36 +0300 |
commit | 2774a0c9ea6b06c000c60dbcc602862ced0a17b8 (patch) | |
tree | 8b4b6b137a0f8a4a4bee502b839602b2ee5d5e21 /src/net | |
parent | ffaadb3ddad5b8577786f7176e4415db68f115f0 (diff) | |
download | plus-2774a0c9ea6b06c000c60dbcc602862ced0a17b8.tar.gz plus-2774a0c9ea6b06c000c60dbcc602862ced0a17b8.tar.bz2 plus-2774a0c9ea6b06c000c60dbcc602862ced0a17b8.tar.xz plus-2774a0c9ea6b06c000c60dbcc602862ced0a17b8.zip |
Fix skill using to being.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/skillhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp index ba2fc8f8b..03dce353b 100644 --- a/src/net/eathena/skillhandler.cpp +++ b/src/net/eathena/skillhandler.cpp @@ -116,8 +116,8 @@ void SkillHandler::useBeing(const int id, const int level, const int beingId) const { createOutPacket(CMSG_SKILL_USE_BEING); - outMsg.writeInt16(static_cast<int16_t>(id), "skill id"); outMsg.writeInt16(static_cast<int16_t>(level), "skill level"); + outMsg.writeInt16(static_cast<int16_t>(id), "skill id"); outMsg.writeInt32(beingId, "target id"); } |