summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/commands.cpp12
-rw-r--r--src/actions/commands.h1
2 files changed, 13 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index ea9ef59e7..c879916a1 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -805,4 +805,16 @@ impHandler(warp)
return true;
}
+impHandler(homunTalk)
+{
+ if (!serverFeatures->haveTalkPet())
+ return false;
+
+ std::string args = event.args;
+ if (findCutFirst(args, "/me "))
+ args = textToMe(args);
+ homunculusHandler->talk(args);
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index b67e4457b..de09f2633 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -79,6 +79,7 @@ namespace Actions
decHandler(fireHomunculus);
decHandler(leaveParty);
decHandler(warp);
+ decHandler(homunTalk);
} // namespace Actions
#undef decHandler