diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game-server/monster.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/monster.h b/src/game-server/monster.h index 38271828..2d826e48 100644 --- a/src/game-server/monster.h +++ b/src/game-server/monster.h @@ -145,11 +145,11 @@ class MonsterClass */ unsigned getTrackRange() const { return mTrackRange; } - /** Sets range in tiles in which the monster moves around when idle. */ + /** Sets range in pixels in which the monster moves around when idle. */ void setStrollRange(unsigned range) { mStrollRange = range; } /** - * Returns range in tiles in which the monster moves around when idle. + * Returns range in pixels in which the monster moves around when idle. */ unsigned getStrollRange() const { return mStrollRange; } |