diff options
Diffstat (limited to 'src/game-server/monstermanager.cpp')
-rw-r--r-- | src/game-server/monstermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/monstermanager.cpp b/src/game-server/monstermanager.cpp index 1802a022..a5acd126 100644 --- a/src/game-server/monstermanager.cpp +++ b/src/game-server/monstermanager.cpp @@ -166,7 +166,7 @@ void MonsterManager::readMonsterNode(xmlNodePtr node, const std::string &filenam { std::string attributeIdString = XML::getProperty(subnode, "id", std::string()); - AttributeManager::AttributeInfo *info = nullptr; + AttributeInfo *info = nullptr; if (utils::isNumeric(attributeIdString)) { const int attributeId = utils::stringToInt(attributeIdString); |