diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-22 22:15:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-22 22:15:50 +0300 |
commit | 92eb0630eb067fbe0a18edb93a02f6fd424c3212 (patch) | |
tree | 8dc535f94f3fbf26979905f583af92ecb95f166f /src/actions/actions.cpp | |
parent | 917235b0e5ffd8e8e7ec32ea65ca537f0217b954 (diff) | |
download | plus-92eb0630eb067fbe0a18edb93a02f6fd424c3212.tar.gz plus-92eb0630eb067fbe0a18edb93a02f6fd424c3212.tar.bz2 plus-92eb0630eb067fbe0a18edb93a02f6fd424c3212.tar.xz plus-92eb0630eb067fbe0a18edb93a02f6fd424c3212.zip |
Add chat command for drop pet's loot.
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index f9ce46cd9..96a6e48ca 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1624,6 +1624,13 @@ impHandler0(petFeed) return true; } +impHandler0(petDropLoot) +{ + if (petHandler != nullptr) + petHandler->dropLoot(); + return true; +} + impHandler(useItem) { const int itemId = atoi(event.args.c_str()); |