diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-17 11:24:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-17 11:24:41 +0300 |
commit | 4eaedf092bc504fae492827b1a89e7bbaac20263 (patch) | |
tree | 098d1b1a7721606a8c053dc56f9e9765b8072c9e /src/actions/actions.cpp | |
parent | 418d749f0d4889904d0b91e825a87e70a08d134c (diff) | |
download | plus-4eaedf092bc504fae492827b1a89e7bbaac20263.tar.gz plus-4eaedf092bc504fae492827b1a89e7bbaac20263.tar.bz2 plus-4eaedf092bc504fae492827b1a89e7bbaac20263.tar.xz plus-4eaedf092bc504fae492827b1a89e7bbaac20263.zip |
Remove getter for petHandler.
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 5fd3b6e70..6c8c49ca6 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -179,7 +179,7 @@ impHandler(petEmote) { const int emotion = event.action - InputAction::PET_EMOTE_1; if (emoteShortcut) - Net::getPetHandler()->emote(emoteShortcut->getEmote(emotion), 0); + petHandler->emote(emoteShortcut->getEmote(emotion), 0); if (Game::instance()) Game::instance()->setValidSpeed(); return true; @@ -1170,7 +1170,7 @@ impHandler(catchPet) else localPlayer->setTarget(target); if (target) - Net::getPetHandler()->catchPet(target); + petHandler->catchPet(target); return true; } |