summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-28 23:24:54 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-28 23:24:54 +0300
commita7f88de7bbea019bf443da0aa31b03d2273739df (patch)
treefd42726656766b6fb6b6b256105be7633e3a7372 /src/net/tmwa
parenta240a48c1e2c3abb240f5957d949a7b6b1753ca5 (diff)
downloadManaVerse-a7f88de7bbea019bf443da0aa31b03d2273739df.tar.gz
ManaVerse-a7f88de7bbea019bf443da0aa31b03d2273739df.tar.bz2
ManaVerse-a7f88de7bbea019bf443da0aa31b03d2273739df.tar.xz
ManaVerse-a7f88de7bbea019bf443da0aa31b03d2273739df.zip
Add chat command /hidenpc. 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 2dd1464c5..af89a91f8 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -263,4 +263,8 @@ void AdminHandler::npcMove(const std::string &name A_UNUSED,
{
}
+void AdminHandler::hideNpc(const std::string &name A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index 3bed8949c..5a0233ab5 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -154,6 +154,8 @@ class AdminHandler final : public Ea::AdminHandler
void npcMove(const std::string &name,
const int x,
const int y) const override final A_CONST;
+
+ void hideNpc(const std::string &name) const override final A_CONST;
};
} // namespace TmwAthena