diff options
Diffstat (limited to 'src/actions/pets.cpp')
-rw-r--r-- | src/actions/pets.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/actions/pets.cpp b/src/actions/pets.cpp index 109da80cd..2247e0533 100644 --- a/src/actions/pets.cpp +++ b/src/actions/pets.cpp @@ -191,4 +191,21 @@ impHandler0(petAiStop) return true; } +impHandler0(petMove) +{ + const Being *const pet = getPet(); + if (!pet) + return false; + + int x = 0; + int y = 0; + + if (parse2Int(event.args, x, y)) + { + petHandler->move(pet->getId(), x, y); + return true; + } + return false; +} + } // namespace Actions |