summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/adminhandler.cpp6
-rw-r--r--src/net/eathena/adminhandler.h5
2 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 6e3dd5eca..2ec6919c2 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -134,4 +134,10 @@ void AdminHandler::recallName(const std::string &name) const
outMsg.writeString(name, 24, "name");
}
+void AdminHandler::mute(const int playerId A_UNUSED, const int type A_UNUSED,
+ const int limit A_UNUSED) const
+{
+ return;
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/adminhandler.h b/src/net/eathena/adminhandler.h
index 2af956a13..80357657f 100644
--- a/src/net/eathena/adminhandler.h
+++ b/src/net/eathena/adminhandler.h
@@ -59,6 +59,11 @@ class AdminHandler final : public MessageHandler, public Ea::AdminHandler
void gotoName(const std::string &name) const override final;
void recallName(const std::string &name) const override final;
+
+ void mute(const int playerId,
+ const int type,
+ const int limit) const override final;
+
};
} // namespace EAthena