summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/adminhandler.cpp4
-rw-r--r--src/net/tmwa/adminhandler.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp
index 914265295..9c32ceaab 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -190,4 +190,8 @@ void AdminHandler::spawnClone(const std::string &name A_UNUSED) const
{
}
+void AdminHandler::spawnSlaveClone(const std::string &name A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index c3c7cc31e..89f44674e 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -112,6 +112,9 @@ class AdminHandler final : public Ea::AdminHandler
void spawnSlave(const std::string &name) const override final A_CONST;
void spawnClone(const std::string &name) const override final A_CONST;
+
+ void spawnSlaveClone(const std::string &name) const override final
+ A_CONST;
};
} // namespace TmwAthena