aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorQAston <none@none>2009-02-23 21:59:02 +0100
committerQAston <none@none>2009-02-23 21:59:02 +0100
commit4cda43dce522f5b784e1cd0e49e672496ee80907 (patch)
tree15f83d81b3a674f2a111a1a92ecc1dda087d01c6 /src
parent072a1524fa2746e249fe0efb970c8827fc2c7e84 (diff)
*Fix a typo.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellAuras.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 88c322af604..289a1f48ea0 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -6441,10 +6441,10 @@ void Aura::HandleAuraStateFrozen(bool apply)
else
{
bool found_another = false;
- for(AuraType const* itr = &frozenAuraTypes[0]; *itr != SPELL_AURA_NONE; itr)
+ for(AuraType const* itr = &frozenAuraTypes[0]; *itr != SPELL_AURA_NONE; itr++)
{
Unit::AuraList const& auras = m_target->GetAurasByType(*itr);
- for(Unit::AuraList::const_iterator i = auras.begin(); i != auras.end(); i)
+ for(Unit::AuraList::const_iterator i = auras.begin(); i != auras.end(); i++)
{
if( GetSpellSchoolMask((*i)->GetSpellProto()) & SPELL_SCHOOL_MASK_FROST)
{