diff options
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 0c7c8a326..dec72bcf7 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -2977,7 +2977,7 @@ void LocalPlayer::crazyMoveA() mCrazyMoveState = 0; } -bool LocalPlayer::isReachable(int x, int y, int maxCost) +bool LocalPlayer::isReachable(int x, int y, int maxCost) const { if (!mMap) return false; @@ -2998,7 +2998,7 @@ bool LocalPlayer::isReachable(int x, int y, int maxCost) return !debugPath.empty(); } -bool LocalPlayer::isReachable(Being *being, int maxCost) +bool LocalPlayer::isReachable(Being *being, int maxCost) const { if (!being || !mMap) return false; |