diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 11 |
1 files changed, 11 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 |