aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellEffects.cpp
diff options
context:
space:
mode:
authorSpp- <u84280@epreinf21.(none)>2011-07-06 13:21:39 +0200
committerSpp- <u84280@epreinf21.(none)>2011-07-06 13:21:39 +0200
commite3729950b9300b7050c0728e3b35e4472e5c9032 (patch)
treec080eb782d9dcf4a8d407ad18bde2b8753d958fe /src/server/game/Spells/SpellEffects.cpp
parente5b5f4e2c735de033698c2b11e904a86d30a229d (diff)
Core: Rename GetDispellMask to GetDispelMask
Diffstat (limited to 'src/server/game/Spells/SpellEffects.cpp')
-rwxr-xr-xsrc/server/game/Spells/SpellEffects.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp
index 957de72b75c..29862c4800c 100755
--- a/src/server/game/Spells/SpellEffects.cpp
+++ b/src/server/game/Spells/SpellEffects.cpp
@@ -1752,7 +1752,7 @@ void Spell::EffectTriggerSpell(SpellEffIndex effIndex)
// Cloak of Shadows
case 35729:
{
- uint32 dispelMask = GetDispellMask(DISPEL_ALL);
+ uint32 dispelMask = GetDispelMask(DISPEL_ALL);
Unit::AuraApplicationMap& Auras = unitTarget->GetAppliedAuras();
for (Unit::AuraApplicationMap::iterator iter = Auras.begin(); iter != Auras.end();)
{
@@ -3151,7 +3151,7 @@ void Spell::EffectDispel(SpellEffIndex effIndex)
// Create dispel mask by dispel type
uint32 dispel_type = m_spellInfo->EffectMiscValue[effIndex];
- uint32 dispelMask = GetDispellMask(DispelType(dispel_type));
+ uint32 dispelMask = GetDispelMask(DispelType(dispel_type));
// we should not be able to dispel diseases if the target is affected by unholy blight
if (dispelMask & (1 << DISPEL_DISEASE) && unitTarget->HasAura(50536))
@@ -6514,7 +6514,7 @@ void Spell::EffectStealBeneficialBuff(SpellEffIndex effIndex)
DispelChargesList steal_list;
// Create dispel mask by dispel type
- uint32 dispelMask = GetDispellMask(DispelType(m_spellInfo->EffectMiscValue[effIndex]));
+ uint32 dispelMask = GetDispelMask(DispelType(m_spellInfo->EffectMiscValue[effIndex]));
Unit::AuraMap const& auras = unitTarget->GetOwnedAuras();
for (Unit::AuraMap::const_iterator itr = auras.begin(); itr != auras.end(); ++itr)
{