diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/pets.cpp | 7 | ||||
-rw-r--r-- | src/actions/pets.h | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/actions/pets.cpp b/src/actions/pets.cpp index b989cfc5c..25c5f1411 100644 --- a/src/actions/pets.cpp +++ b/src/actions/pets.cpp @@ -238,4 +238,11 @@ impHandler0(petReturnToEgg) return true; } +impHandler0(petUnequip) +{ + if (petHandler != nullptr) + petHandler->unequip(); + return true; +} + } // namespace Actions diff --git a/src/actions/pets.h b/src/actions/pets.h index f607f474c..5bc3bd5a9 100644 --- a/src/actions/pets.h +++ b/src/actions/pets.h @@ -44,6 +44,7 @@ namespace Actions decHandler(petFeed); decHandler(petDropLoot); decHandler(petReturnToEgg); + decHandler(petUnequip); } // namespace Actions #undef decHandler |