diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-02-16 00:05:50 +0100 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-02-16 00:05:50 +0100 |
commit | b9a9f9e02191dc26ca574b15f1c7b5d0a27bfa95 (patch) | |
tree | ae2b147ec202ec6dc2ce691cc369ba17435bf0b4 | |
parent | e9992c6c5fe44dd440a0bbe2d86a1f2909338efe (diff) | |
download | manaserv-b9a9f9e02191dc26ca574b15f1c7b5d0a27bfa95.tar.gz manaserv-b9a9f9e02191dc26ca574b15f1c7b5d0a27bfa95.tar.bz2 manaserv-b9a9f9e02191dc26ca574b15f1c7b5d0a27bfa95.tar.xz manaserv-b9a9f9e02191dc26ca574b15f1c7b5d0a27bfa95.zip |
Fixed doc about stroll range, which is coded in pixels.
Not in tiles, as suggested by the header.
Trivial fix.
-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; } |