diff options
Diffstat (limited to 'src/resources/beinginfo.cpp')
-rw-r--r-- | src/resources/beinginfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/beinginfo.cpp b/src/resources/beinginfo.cpp index d7ecb8136..b833078ae 100644 --- a/src/resources/beinginfo.cpp +++ b/src/resources/beinginfo.cpp @@ -25,6 +25,8 @@ #include "configuration.h" #include "logger.h" +#include "resources/map/blocktype.h" + #include "utils/delete2.h" #include "utils/dtor.h" #include "utils/gettext.h" @@ -47,7 +49,7 @@ BeingInfo::BeingInfo() : mWalkMask(Map::BLOCKMASK_WALL | Map::BLOCKMASK_CHARACTER | Map::BLOCKMASK_MONSTER | Map::BLOCKMASK_AIR | Map::BLOCKMASK_WATER), - mBlockType(Map::BLOCKTYPE_CHARACTER), + mBlockType(BlockType::CHARACTER), mColors(nullptr), mTargetOffsetX(0), mTargetOffsetY(0), |