summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/adminhandler.cpp5
-rw-r--r--src/net/tmwa/adminhandler.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp
index f24b05b24..3c8762f13 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -122,4 +122,9 @@ void AdminHandler::gotoName(const std::string &name) const
Net::getChatHandler()->talk("@goto " + name, GENERAL_CHANNEL);
}
+void AdminHandler::recallName(const std::string &name) const
+{
+ Net::getChatHandler()->talk("@recall " + name, GENERAL_CHANNEL);
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index 5b277bf62..fe1fb5fc3 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -57,6 +57,8 @@ class AdminHandler final : public MessageHandler, public Ea::AdminHandler
void resetSkills() const override final;
void gotoName(const std::string &name) const override final;
+
+ void recallName(const std::string &name) const override final;
};
} // namespace TmwAthena