diff options
Diffstat (limited to 'src/game-server/character.hpp')
-rw-r--r-- | src/game-server/character.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/character.hpp b/src/game-server/character.hpp index 8e2cc954..33be114e 100644 --- a/src/game-server/character.hpp +++ b/src/game-server/character.hpp @@ -303,7 +303,7 @@ class Character : public Being { return mCorrectionPoints; } /** - * Gets the way the object is blocked by other things on the map + * Gets the way the actor is blocked by other things on the map */ virtual unsigned char getWalkMask() const { return 0x82; } // blocked by walls and monsters ( bin 1000 0010) @@ -379,7 +379,7 @@ class Character : public Being protected: /** - * Gets the way the object blocks pathfinding for other objects + * Gets the way the actor blocks pathfinding for other objects */ virtual Map::BlockType getBlockType() const { return Map::BLOCKTYPE_CHARACTER; } |