summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-25 19:37:31 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-25 19:37:31 +0300
commit25bf3308cf490313b4a86b78643226f078ce4f7e (patch)
tree1276798181fb179babf42b1d5c9d7a7eb39f3157 /src/net/tmwa
parent77392dfa39913e4d6c51934deab51088da878e7a (diff)
downloadplus-25bf3308cf490313b4a86b78643226f078ce4f7e.tar.gz
plus-25bf3308cf490313b4a86b78643226f078ce4f7e.tar.bz2
plus-25bf3308cf490313b4a86b78643226f078ce4f7e.tar.xz
plus-25bf3308cf490313b4a86b78643226f078ce4f7e.zip
Add chat command /gotonpc. Also add it to npc context menu.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/adminhandler.cpp4
-rw-r--r--src/net/tmwa/adminhandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp
index 363cd2552..76bec8fc5 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -207,4 +207,8 @@ void AdminHandler::randomWarp(const std::string &name A_UNUSED) const
{
}
+void AdminHandler::gotoNpc(const std::string &name A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index 88bd007f8..bdb7e1037 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -126,6 +126,8 @@ class AdminHandler final : public Ea::AdminHandler
A_CONST;
void randomWarp(const std::string &name) const override final A_CONST;
+
+ void gotoNpc(const std::string &name) const override final A_CONST;
};
} // namespace TmwAthena