summaryrefslogtreecommitdiff
path: root/src/game-server/monstermanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/monstermanager.cpp')
-rw-r--r--src/game-server/monstermanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/monstermanager.cpp b/src/game-server/monstermanager.cpp
index 313be34e..bebb74a3 100644
--- a/src/game-server/monstermanager.cpp
+++ b/src/game-server/monstermanager.cpp
@@ -169,11 +169,11 @@ void MonsterManager::initialize()
}
bool attributesComplete = true;
- const AttributeScope &mobAttr =
+ const AttributeManager::AttributeScope &mobAttr =
attributeManager->getAttributeScope(MonsterScope);
- for (AttributeScope::const_iterator it = mobAttr.begin(),
- it_end = mobAttr.end(); it != it_end; ++it)
+ for (AttributeManager::AttributeScope::const_iterator it =
+ mobAttr.begin(), it_end = mobAttr.end(); it != it_end; ++it)
{
if (!monster->mAttributes.count(it->first))
{