summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-22 23:20:05 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-22 23:20:05 +0300
commit3c51082082397b0564a224214249a096750b56c6 (patch)
treefc4bb3b4d511842e2a9f0f608d51fb3539a40ae9 /src/actions
parentf6596726b6978a7380de163740e6b65c8394ca42 (diff)
downloadplus-3c51082082397b0564a224214249a096750b56c6.tar.gz
plus-3c51082082397b0564a224214249a096750b56c6.tar.bz2
plus-3c51082082397b0564a224214249a096750b56c6.tar.xz
plus-3c51082082397b0564a224214249a096750b56c6.zip
Add chat command for return pet to egg.
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/pets.cpp7
-rw-r--r--src/actions/pets.h1
2 files changed, 8 insertions, 0 deletions
diff --git a/src/actions/pets.cpp b/src/actions/pets.cpp
index 01542edf4..b989cfc5c 100644
--- a/src/actions/pets.cpp
+++ b/src/actions/pets.cpp
@@ -231,4 +231,11 @@ impHandler0(petDropLoot)
return true;
}
+impHandler0(petReturnToEgg)
+{
+ if (petHandler != nullptr)
+ petHandler->returnToEgg();
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/pets.h b/src/actions/pets.h
index a3ac0795f..f607f474c 100644
--- a/src/actions/pets.h
+++ b/src/actions/pets.h
@@ -43,6 +43,7 @@ namespace Actions
decHandler(petMove);
decHandler(petFeed);
decHandler(petDropLoot);
+ decHandler(petReturnToEgg);
} // namespace Actions
#undef decHandler