diff options
| author | QAston <none@none> | 2010-01-10 13:48:57 +0100 |
|---|---|---|
| committer | QAston <none@none> | 2010-01-10 13:48:57 +0100 |
| commit | f9c4030f59a84773046dfec8cef3cf82b4f9ed27 (patch) | |
| tree | 89a417d5bb7e70b18b88faa3f2ce5204e90b60b4 /src/game/SpellEffects.cpp | |
| parent | eea50de960f0035cd54e985dc119870aa215732b (diff) | |
*Implement attribute SPELL_ATTR_NEGATIVE_1
*Remove unneeded hacks from SpellMgr::_isPositiveSpell
*Missing ! in prev commit.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
| -rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index cb8cda60536..1526ce6f40c 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -7176,7 +7176,7 @@ void Spell::EffectStealBeneficialBuff(uint32 i) if ((1<<aura->GetSpellProto()->Dispel) & dispelMask) { // Need check for passive? this - if (aura->IsPositive(unitTarget) || aura->IsPassive() || aura->GetSpellProto()->AttributesEx4 & SPELL_ATTR_EX4_NOT_STEALABLE) + if (!aura->IsPositive(unitTarget) || aura->IsPassive() || aura->GetSpellProto()->AttributesEx4 & SPELL_ATTR_EX4_NOT_STEALABLE) continue; bool dispel_charges = aura->GetSpellProto()->AttributesEx7 & SPELL_ATTR_EX7_DISPEL_CHARGES; |
