summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/adminhandler.cpp9
-rw-r--r--src/net/eathena/adminhandler.h2
2 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 1b49e4c45..878cd2156 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -24,6 +24,10 @@
#include "being/being.h"
+#include "const/gui/chat.h"
+
+#include "net/chathandler.h"
+
#include "net/eathena/messageout.h"
#include "net/eathena/protocolout.h"
@@ -158,4 +162,9 @@ void AdminHandler::requestStats(const std::string &name) const
outMsg.writeString(name, 24, "name");
}
+void AdminHandler::monsterInfo(const std::string &name) const
+{
+ chatHandler->talk("@monsterinfo " + name, GENERAL_CHANNEL);
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/adminhandler.h b/src/net/eathena/adminhandler.h
index 19f26db7e..abbd292c9 100644
--- a/src/net/eathena/adminhandler.h
+++ b/src/net/eathena/adminhandler.h
@@ -71,6 +71,8 @@ class AdminHandler final : public Ea::AdminHandler
void requestStats(const std::string &name) const override final;
+ void monsterInfo(const std::string &name) const override final;
+
protected:
static std::string mStatsName;
};