diff options
author | megamage <none@none> | 2008-11-27 11:54:27 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-11-27 11:54:27 -0600 |
commit | 1c5fc7f5d68a82d9932dff93ffa53176e216bb5c (patch) | |
tree | ad7ff895e42d4b753a97c561f9a1607bbebc3bac /src/game/SpellEffects.cpp | |
parent | 4b4956f238a3af472a095710e1259c24254cd49f (diff) |
*Fix the bug that devastate requires double rage.
*Fix the bug that cloak of shadows removes postive buffs.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index abbd6214203..e7e1302ab58 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1817,17 +1817,18 @@ void Spell::EffectTriggerSpell(uint32 i) // Cloak of Shadows case 35729 : { - m_caster->RemoveAurasWithDispelType(DISPEL_ALL); + uint32 dispelMask = GetDispellMask(DISPEL_ALL); Unit::AuraMap& Auras = m_caster->GetAuras(); for(Unit::AuraMap::iterator iter = Auras.begin(); iter != Auras.end(); ++iter) { // remove all harmful spells on you... - if(// only affect magic spells - iter->second->GetSpellProto()->DmgClass == SPELL_DAMAGE_CLASS_MAGIC + SpellEntry const* spell = iter->second->GetSpellProto(); + if((spell->DmgClass == SPELL_DAMAGE_CLASS_MAGIC // only affect magic spells + || ((1<<spell->Dispel) & dispelMask)) // ignore positive and passive auras && !iter->second->IsPositive() && !iter->second->IsPassive()) { - m_caster->RemoveAurasDueToSpell(iter->second->GetSpellProto()->Id); + m_caster->RemoveAurasDueToSpell(spell->Id); iter = Auras.begin(); } } |