summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-25 20:42:50 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-25 20:42:50 +0300
commit3fe3a77e1ae0db748a8a0b8d500db24a6a964b44 (patch)
treeaebc36f17eeb2d5ecf675bd3d424f5558422ec60 /src/net/eathena
parent64a067458ea169b9ff5b9a78ed1a011da86e8bdf (diff)
downloadplus-3fe3a77e1ae0db748a8a0b8d500db24a6a964b44.tar.gz
plus-3fe3a77e1ae0db748a8a0b8d500db24a6a964b44.tar.bz2
plus-3fe3a77e1ae0db748a8a0b8d500db24a6a964b44.tar.xz
plus-3fe3a77e1ae0db748a8a0b8d500db24a6a964b44.zip
Add chat command /gmheal. Also add it to player context menu.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/adminhandler.cpp5
-rw-r--r--src/net/eathena/adminhandler.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 270c20070..1abdb3b01 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -280,4 +280,9 @@ void AdminHandler::killable(const std::string &name) const
Gm::runCharCommand("killable", name);
}
+void AdminHandler::heal(const std::string &name) const
+{
+ Gm::runCharCommand("heal", name);
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/adminhandler.h b/src/net/eathena/adminhandler.h
index 6e6906fcf..8897dd58d 100644
--- a/src/net/eathena/adminhandler.h
+++ b/src/net/eathena/adminhandler.h
@@ -120,6 +120,8 @@ class AdminHandler final : public Ea::AdminHandler
void killable(const std::string &name) const override final;
+ void heal(const std::string &name) const override final;
+
protected:
static std::string mStatsName;
};