diff options
Diffstat (limited to 'src/game/Spell.h')
-rw-r--r-- | src/game/Spell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Spell.h b/src/game/Spell.h index f045a1415e0..ecf6ed90c2a 100644 --- a/src/game/Spell.h +++ b/src/game/Spell.h @@ -206,7 +206,7 @@ struct SpellValue { explicit SpellValue(SpellEntry const *proto) { - for(uint32 i = 0; i < 3; ++i) + for (uint32 i = 0; i < 3; ++i) EffectBasePoints[i] = proto->EffectBasePoints[i]; MaxAffectedTargets = proto->MaxAffectedTargets; RadiusMod = 1.0f; @@ -682,7 +682,7 @@ namespace Trinity template<class T> inline void Visit(GridRefManager<T> &m) { - for(typename GridRefManager<T>::iterator itr = m.begin(); itr != m.end(); ++itr) + for (typename GridRefManager<T>::iterator itr = m.begin(); itr != m.end(); ++itr) { Unit *target = (Unit*)itr->getSource(); |