diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-25 14:03:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-25 14:03:02 +0300 |
commit | 6ce16c283d584fc1a90a5e68f986a90fdc6e8da5 (patch) | |
tree | 17858d71f2b7ce5ddf8367c08a81f53e6eeee610 /src/actions | |
parent | fabdb839728e5a625b67bae1f278952ddabb1844 (diff) | |
download | plus-6ce16c283d584fc1a90a5e68f986a90fdc6e8da5.tar.gz plus-6ce16c283d584fc1a90a5e68f986a90fdc6e8da5.tar.bz2 plus-6ce16c283d584fc1a90a5e68f986a90fdc6e8da5.tar.xz plus-6ce16c283d584fc1a90a5e68f986a90fdc6e8da5.zip |
Add chat command for rename homunculus.
New chat comamnd: sethomunname NAME
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/commands.cpp | 11 | ||||
-rw-r--r-- | src/actions/commands.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 7696c3db1..4cf529ec0 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -40,6 +40,7 @@ #include "net/adminhandler.h" #include "net/chathandler.h" #include "net/guildhandler.h" +#include "net/homunculushandler.h" #include "net/net.h" #include "net/pethandler.h" #include "net/serverfeatures.h" @@ -700,4 +701,14 @@ impHandler(setPetName) return true; } +impHandler(setHomunculusName) +{ + const std::string args = event.args; + if (args.empty()) + return false; + + homunculusHandler->setName(args); + return true; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index 5dce9ac87..5a1bffddb 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -74,6 +74,7 @@ namespace Actions decHandler(serverIgnoreWhisper); decHandler(serverUnIgnoreWhisper); decHandler(setPetName); + decHandler(setHomunculusName); } // namespace Actions #undef decHandler |