aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellEffects.cpp
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2016-12-13 02:06:07 -0300
committerariel- <ariel-@users.noreply.github.com>2016-12-13 02:18:06 -0300
commit3a52ad8d38eb33155d4218023149c78afded779e (patch)
treea71798c74c3f33eb0ab59c40e9be1e8e66afaf06 /src/server/game/Spells/SpellEffects.cpp
parent8b0122e7ede6d22bb81869008d35b9338c5e408a (diff)
Core/Entities: Replace existing GetAuraEffectsByType + iteration uses with proper helper functions
Diffstat (limited to 'src/server/game/Spells/SpellEffects.cpp')
-rw-r--r--src/server/game/Spells/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp
index c220e3eba01..80ddb99efcd 100644
--- a/src/server/game/Spells/SpellEffects.cpp
+++ b/src/server/game/Spells/SpellEffects.cpp
@@ -3568,7 +3568,7 @@ void Spell::EffectScriptEffect(SpellEffIndex effIndex)
// Glyph of Scourge Strike
case 69961:
{
- Unit::AuraEffectList const &mPeriodic = unitTarget->GetAuraEffectsByType(SPELL_AURA_PERIODIC_DAMAGE);
+ Unit::AuraEffectList const& mPeriodic = unitTarget->GetAuraEffectsByType(SPELL_AURA_PERIODIC_DAMAGE);
for (Unit::AuraEffectList::const_iterator i = mPeriodic.begin(); i != mPeriodic.end(); ++i)
{
AuraEffect const* aurEff = *i;