diff options
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index aeae31faf..a12aacc91 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -315,9 +315,9 @@ class LocalPlayer : public Being, public ActorSpriteListener, // int getSkillLv(int id); - bool isReachable(int x, int y, int maxCost = 0); + bool isReachable(int x, int y, int maxCost = 0) const; - bool isReachable(Being *being, int maxCost = 0); + bool isReachable(Being *being, int maxCost = 0) const; void setHome(); |