diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 5 | ||||
-rw-r--r-- | src/net/eathena/adminhandler.h | 2 |
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; }; |