From 2b2b02df79649beed9a49e37f21db996f053d4ca Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Mon, 8 Jun 2009 22:31:07 +0200 Subject: Attempt to clear some of the block/walkmask confusion --- src/monster.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/monster.h') diff --git a/src/monster.h b/src/monster.h index bf52ed6d..7b44b5a8 100644 --- a/src/monster.h +++ b/src/monster.h @@ -82,7 +82,11 @@ class Monster : public Being * Gets the way the monster is blocked by other objects */ virtual unsigned char getWalkMask() const - { return 0x83; } // blocked by walls, other monsters and players ( bin 1000 0011) + { + return Map::BLOCKMASK_WALL + | Map::BLOCKMASK_CHARACTER + | Map::BLOCKMASK_MONSTER; + } protected: /** -- cgit v1.2.3-60-g2f50