summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/pets.cpp10
-rw-r--r--src/actions/pets.h2
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/pets.cpp b/src/actions/pets.cpp
index 64ac81e83..e211ff0ac 100644
--- a/src/actions/pets.cpp
+++ b/src/actions/pets.cpp
@@ -201,4 +201,14 @@ impHandler0(petDirectRight)
return true;
}
+impHandler0(petAiStart)
+{
+ petHandler->startAi(true);
+}
+
+impHandler0(petAiStop)
+{
+ petHandler->startAi(false);
+}
+
} // namespace Actions
diff --git a/src/actions/pets.h b/src/actions/pets.h
index 4aed1d94c..25066df38 100644
--- a/src/actions/pets.h
+++ b/src/actions/pets.h
@@ -40,6 +40,8 @@ namespace Actions
decHandler(petDirectDown);
decHandler(petDirectLeft);
decHandler(petDirectRight);
+ decHandler(petAiStart);
+ decHandler(petAiStop);
} // namespace Actions
#undef decHandler