summaryrefslogtreecommitdiff
path: root/src/net/tmwa/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-10 20:54:27 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-10 20:54:27 +0300
commitfc199c3ae60d4c4cf76236c7f4891113daa3cbc4 (patch)
tree0ecb3d397a9224c280bebfa22aeb1588edf63371 /src/net/tmwa/skillhandler.cpp
parentb748c8947e6225376e77b09f4c7c335985d934ef (diff)
downloadplus-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.gz
plus-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.bz2
plus-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.xz
plus-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.zip
improve skillhandler class.
Diffstat (limited to 'src/net/tmwa/skillhandler.cpp')
-rw-r--r--src/net/tmwa/skillhandler.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/net/tmwa/skillhandler.cpp b/src/net/tmwa/skillhandler.cpp
index 72ab4b6ec..9dd6af1fe 100644
--- a/src/net/tmwa/skillhandler.cpp
+++ b/src/net/tmwa/skillhandler.cpp
@@ -71,7 +71,7 @@ void SkillHandler::handleMessage(Net::MessageIn &msg)
BLOCK_END("SkillHandler::handleMessage")
}
-void SkillHandler::useBeing(int id, int level, int beingId)
+void SkillHandler::useBeing(const int id, const int level, const int beingId) const
{
MessageOut outMsg(CMSG_SKILL_USE_BEING);
outMsg.writeInt16(static_cast<int16_t>(id));
@@ -79,7 +79,8 @@ void SkillHandler::useBeing(int id, int level, int beingId)
outMsg.writeInt32(beingId);
}
-void SkillHandler::usePos(int id, int level, int x, int y)
+void SkillHandler::usePos(const int id, const int level,
+ const int x, const int y) const
{
MessageOut outMsg(CMSG_SKILL_USE_POSITION);
outMsg.writeInt16(static_cast<int16_t>(level));
@@ -88,7 +89,7 @@ void SkillHandler::usePos(int id, int level, int x, int y)
outMsg.writeInt16(static_cast<int16_t>(y));
}
-void SkillHandler::useMap(int id, const std::string &map)
+void SkillHandler::useMap(const int id, const std::string &map) const
{
MessageOut outMsg(CMSG_SKILL_USE_MAP);
outMsg.writeInt16(static_cast<int16_t>(id));