summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-24 20:29:30 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-24 20:29:30 +0300
commit1604dd8af946e865a5fcf1ddc2e533581892da39 (patch)
tree633efe3999be9cef8cfef6f420d2f0018fcb0a4a /src/net
parente0b4a2665505279e58f2a618272db5245f275518 (diff)
downloadManaVerse-1604dd8af946e865a5fcf1ddc2e533581892da39.tar.gz
ManaVerse-1604dd8af946e865a5fcf1ddc2e533581892da39.tar.bz2
ManaVerse-1604dd8af946e865a5fcf1ddc2e533581892da39.tar.xz
ManaVerse-1604dd8af946e865a5fcf1ddc2e533581892da39.zip
Add chat command /spawnslave. Also add it to monster context menu.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/adminhandler.h2
-rw-r--r--src/net/eathena/adminhandler.cpp5
-rw-r--r--src/net/eathena/adminhandler.h2
-rw-r--r--src/net/tmwa/adminhandler.cpp4
-rw-r--r--src/net/tmwa/adminhandler.h2
5 files changed, 15 insertions, 0 deletions
diff --git a/src/net/adminhandler.h b/src/net/adminhandler.h
index 2d0dc72f4..271d6882e 100644
--- a/src/net/adminhandler.h
+++ b/src/net/adminhandler.h
@@ -126,6 +126,8 @@ class AdminHandler notfinal
virtual void showAccountInfo(const std::string &name) const = 0;
virtual void spawn(const std::string &name) const = 0;
+
+ virtual void spawnSlave(const std::string &name) const = 0;
};
} // namespace Net
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 468be7117..5a91149a2 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -253,4 +253,9 @@ void AdminHandler::showAccountInfo(const std::string &name) const
chatHandler->talk("@accinfo " + name, GENERAL_CHANNEL);
}
+void AdminHandler::spawnSlave(const std::string &name) const
+{
+ chatHandler->talk("@summon " + name, GENERAL_CHANNEL);
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/adminhandler.h b/src/net/eathena/adminhandler.h
index e82f88af2..ae89ce38c 100644
--- a/src/net/eathena/adminhandler.h
+++ b/src/net/eathena/adminhandler.h
@@ -100,6 +100,8 @@ class AdminHandler final : public Ea::AdminHandler
void showAccountInfo(const std::string &name) const override final;
+ void spawnSlave(const std::string &name) const override final;
+
protected:
static std::string mStatsName;
};
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp
index d8af64d7b..1b19567d4 100644
--- a/src/net/tmwa/adminhandler.cpp
+++ b/src/net/tmwa/adminhandler.cpp
@@ -182,4 +182,8 @@ void AdminHandler::showAccountInfo(const std::string &name A_UNUSED) const
{
}
+void AdminHandler::spawnSlave(const std::string &name A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h
index bec2c6c40..c5b5d076c 100644
--- a/src/net/tmwa/adminhandler.h
+++ b/src/net/tmwa/adminhandler.h
@@ -108,6 +108,8 @@ class AdminHandler final : public Ea::AdminHandler
void showAccountInfo(const std::string &name) const override final
A_CONST;
+
+ void spawnSlave(const std::string &name) const override final A_CONST;
};
} // namespace TmwAthena