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/being/being.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/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 6ad8f5a9b..303e9f8f9 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1520,7 +1520,7 @@ void Being::petLogic() setAction(BeingAction::STAND, 0); fixPetSpawnPos(dstX, dstY); setTileCoords(dstX, dstY); - Net::getPetHandler()->spawn(mOwner, mId, dstX, dstY); + petHandler->spawn(mOwner, mId, dstX, dstY); } else if (!followDist || divX > followDist || divY > followDist) { @@ -1573,7 +1573,7 @@ void Being::petLogic() if (mX != dstX || mY != dstY) { setPath(mMap->findPath(mX, mY, dstX, dstY, blockWalkMask)); - Net::getPetHandler()->move(mOwner, mId, mX, mY, dstX, dstY); + petHandler->move(mOwner, mId, mX, mY, dstX, dstY); return; } } @@ -3137,7 +3137,7 @@ void Being::addPet(const int id) int dstY = mY; being->fixPetSpawnPos(dstX, dstY); being->setTileCoords(dstX, dstY); - Net::getPetHandler()->spawn(this, being->mId, dstX, dstY); + petHandler->spawn(this, being->mId, dstX, dstY); } } |