summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 0b7010789..72d362eea 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -1617,8 +1617,8 @@ void Being::petLogic()
return;
int dstX = mOwner->getTileX();
int dstY = mOwner->getTileY();
- const int followDist = 3;
- const int dist = 1;
+ const int followDist = mInfo->getStartFollowDist();
+ const int dist = mInfo->getFollowDist();
const int divX = abs(dstX - mX);
const int divY = abs(dstY - mY);
if (divX > followDist || divY > followDist)