diff options
Diffstat (limited to 'src/resources/db/monsterdb.cpp')
-rw-r--r-- | src/resources/db/monsterdb.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/resources/db/monsterdb.cpp b/src/resources/db/monsterdb.cpp index f4196ec08..e950072dd 100644 --- a/src/resources/db/monsterdb.cpp +++ b/src/resources/db/monsterdb.cpp @@ -22,6 +22,8 @@ #include "resources/db/monsterdb.h" +#include "enums/resources/map/blockmask.h" + #include "resources/beingcommon.h" #include "resources/beinginfo.h" @@ -101,6 +103,8 @@ void MonsterDB::loadXmlFile(const std::string &fileName, monsterNode, "name", _("unnamed"))); BeingCommon::readBasicAttributes(currentInfo, monsterNode, "attack"); + BeingCommon::readWalkingAttributes(currentInfo, monsterNode, + BlockMask::MONSTERWALL); currentInfo->setMaxHP(XML::getProperty(monsterNode, "maxHP", 0)); |