diff options
Diffstat (limited to 'src/net/tmwa/skillhandler.cpp')
-rw-r--r-- | src/net/tmwa/skillhandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/skillhandler.cpp b/src/net/tmwa/skillhandler.cpp index 26902f18e..05f7b0d90 100644 --- a/src/net/tmwa/skillhandler.cpp +++ b/src/net/tmwa/skillhandler.cpp @@ -77,7 +77,7 @@ void SkillHandler::handleMessage(Net::MessageIn &msg) void SkillHandler::useBeing(const int id, const int level, const int beingId) const { - MessageOut outMsg(CMSG_SKILL_USE_BEING); + createOutPacket(CMSG_SKILL_USE_BEING); outMsg.writeInt16(static_cast<int16_t>(id)); outMsg.writeInt16(static_cast<int16_t>(level)); outMsg.writeInt32(beingId); @@ -86,7 +86,7 @@ void SkillHandler::useBeing(const int id, const int level, void SkillHandler::usePos(const int id, const int level, const int x, const int y) const { - MessageOut outMsg(CMSG_SKILL_USE_POSITION); + createOutPacket(CMSG_SKILL_USE_POSITION); outMsg.writeInt16(static_cast<int16_t>(level)); outMsg.writeInt16(static_cast<int16_t>(id)); outMsg.writeInt16(static_cast<int16_t>(x)); @@ -97,7 +97,7 @@ void SkillHandler::usePos(const int id, const int level, const int x, const int y, const std::string &text) const { - MessageOut outMsg(CMSG_SKILL_USE_POSITION_MORE); + createOutPacket(CMSG_SKILL_USE_POSITION_MORE); outMsg.writeInt16(static_cast<int16_t>(level), "level"); outMsg.writeInt16(static_cast<int16_t>(id), "id"); outMsg.writeInt16(static_cast<int16_t>(x), "x"); @@ -107,7 +107,7 @@ void SkillHandler::usePos(const int id, const int level, void SkillHandler::useMap(const int id, const std::string &map) const { - MessageOut outMsg(CMSG_SKILL_USE_MAP); + createOutPacket(CMSG_SKILL_USE_MAP); outMsg.writeInt16(static_cast<int16_t>(id)); outMsg.writeString(map, 16); } |