summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/adminhandler.cpp3
-rw-r--r--src/net/tmwa/adminhandler.h2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp
index 6fcc1bd6e..8d1276f6e 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -228,5 +228,8 @@ void AdminHandler::alive(const std::string &name) const
Gm::runCommand("revive", name);
}
+void AdminHandler::disguise(const std::string &name A_UNUSED) const
+{
+}
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index 99a141517..0a5e034f7 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -136,6 +136,8 @@ class AdminHandler final : public Ea::AdminHandler
void heal(const std::string &name) const override final A_CONST;
void alive(const std::string &name) const override final;
+
+ void disguise(const std::string &name) const override final;
};
} // namespace TmwAthena