summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-25 20:44:42 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 20:44:42 +0300
commit9f1d941ea4195ec4c4942fac47fde24c19265d5b (patch)
treeaf50f9ee1f1d6d869d1df3da1792a38d4d04d02a /src/net/tmwa
parent3e25eaf71f76daaf846b640e691209a5f26e1cce (diff)
downloadplus-9f1d941ea4195ec4c4942fac47fde24c19265d5b.tar.gz
plus-9f1d941ea4195ec4c4942fac47fde24c19265d5b.tar.bz2
plus-9f1d941ea4195ec4c4942fac47fde24c19265d5b.tar.xz
plus-9f1d941ea4195ec4c4942fac47fde24c19265d5b.zip
Add packet CMSG_SKILL_USE_BEING_STOP 0x0b11
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/skillhandler.cpp4
-rw-r--r--src/net/tmwa/skillhandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/skillhandler.cpp b/src/net/tmwa/skillhandler.cpp
index 315105b8b..53c31451a 100644
--- a/src/net/tmwa/skillhandler.cpp
+++ b/src/net/tmwa/skillhandler.cpp
@@ -56,6 +56,10 @@ void SkillHandler::useBeingStart(const int id A_UNUSED,
{
}
+void SkillHandler::useStop(const int id A_UNUSED) const
+{
+}
+
void SkillHandler::usePos(const int id, const int level,
const int x, const int y) const
{
diff --git a/src/net/tmwa/skillhandler.h b/src/net/tmwa/skillhandler.h
index c44069512..e33f8af13 100644
--- a/src/net/tmwa/skillhandler.h
+++ b/src/net/tmwa/skillhandler.h
@@ -45,6 +45,8 @@ class SkillHandler final : public Ea::SkillHandler
const int level,
const BeingId beingId) const override final;
+ void useStop(const int id) const override final;
+
void usePos(const int id,
const int level,
const int x, const int y) const override final;