summaryrefslogtreecommitdiff
path: root/src/actions/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r--src/actions/commands.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index 254f3868c..7696c3db1 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -690,4 +690,14 @@ impHandler(serverUnIgnoreWhisper)
return true;
}
+impHandler(setPetName)
+{
+ const std::string args = event.args;
+ if (args.empty())
+ return false;
+
+ petHandler->setName(args);
+ return true;
+}
+
} // namespace Actions