summaryrefslogtreecommitdiffstats
path: root/src/game-server/attributemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/attributemanager.cpp')
-rw-r--r--src/game-server/attributemanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/attributemanager.cpp b/src/game-server/attributemanager.cpp
index 3a70fd9..018de28 100644
--- a/src/game-server/attributemanager.cpp
+++ b/src/game-server/attributemanager.cpp
@@ -33,7 +33,7 @@ void AttributeManager::reload()
{
mTagMap.clear();
mAttributeMap.clear();
- for (unsigned int i = 0; i < MaxScope; ++i)
+ for (unsigned i = 0; i < MaxScope; ++i)
mAttributeScopes[i].clear();
readAttributesFile();
@@ -43,11 +43,11 @@ void AttributeManager::reload()
<< ", NonStackableBonus is " << NonStackableBonus << ".");
LOG_DEBUG("Additive is " << Additive << ", Multiplicative is " << Multiplicative << ".");
const std::string *tag;
- unsigned int count = 0;
+ unsigned count = 0;
for (AttributeMap::const_iterator i = mAttributeMap.begin();
i != mAttributeMap.end(); ++i)
{
- unsigned int lCount = 0;
+ unsigned lCount = 0;
LOG_DEBUG(" "<<i->first<<" : ");
for (std::vector<AttributeModifier>::const_iterator j =
i->second.modifiers.begin();