summaryrefslogtreecommitdiff
path: root/src/monster.h
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2008-03-13 12:11:54 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2008-03-13 12:11:54 +0000
commitc6915bd4a4fc4702094e5e6070b62651bb97bfdb (patch)
tree5da49c57d94e481112875b3c6070f82adb7ebca1 /src/monster.h
parentd2eff88e164b090faf937b0bedec482bdec1c621 (diff)
downloadMana-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.h4
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:
/**