summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map.cpp1
-rw-r--r--src/monster.h4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/map.cpp b/src/map.cpp
index afa2bcc5..f7b16427 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -25,6 +25,7 @@
#include <algorithm>
#include <queue>
+#include <cassert>
#include "beingmanager.h"
#include "game.h"
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:
/**