diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-13 12:11:54 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-13 12:11:54 +0000 |
commit | c6915bd4a4fc4702094e5e6070b62651bb97bfdb (patch) | |
tree | 5da49c57d94e481112875b3c6070f82adb7ebca1 /src/monster.h | |
parent | d2eff88e164b090faf937b0bedec482bdec1c621 (diff) | |
download | mana-c6915bd4a4fc4702094e5e6070b62651bb97bfdb.tar.gz mana-c6915bd4a4fc4702094e5e6070b62651bb97bfdb.tar.bz2 mana-c6915bd4a4fc4702094e5e6070b62651bb97bfdb.tar.xz mana-c6915bd4a4fc4702094e5e6070b62651bb97bfdb.zip |
included cassert header and fixed grammar in a comment.
Diffstat (limited to 'src/monster.h')
-rw-r--r-- | src/monster.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monster.h b/src/monster.h index ecf7ad51..bde99ed6 100644 --- a/src/monster.h +++ b/src/monster.h @@ -62,10 +62,10 @@ class Monster : public Being getInfo() const; /** - * Gets the way the monster is blocked for other objects + * Gets the way the monster is blocked by other objects */ virtual unsigned char getWalkMask() const - { return 0x83; } // blocked walls, other monsters and players ( bin 1000 0011) + { return 0x83; } // blocked by walls, other monsters and players ( bin 1000 0011) protected: /** |