diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 3dfcd8078..78223db9b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2814,7 +2814,7 @@ void Aura::HandleAuraModShapeshift(bool apply, bool Real) // remove movement affects target->RemoveSpellsCausingAura(SPELL_AURA_MOD_ROOT); Unit::AuraList const& slowingAuras = target->GetAurasByType(SPELL_AURA_MOD_DECREASE_SPEED); - for (Unit::AuraList::iterator iter = slowingAuras.begin(); iter != slowingAuras.end();) + for (Unit::AuraList::const_iterator iter = slowingAuras.begin(); iter != slowingAuras.end();) { SpellEntry const* aurSpellInfo = (*iter)->GetSpellProto(); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index dacef7f7d..1d8b62c3a 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10260" + #define REVISION_NR "10261" #endif // __REVISION_NR_H__