diff options
author | Anubisss <none@none> | 2009-04-26 17:35:28 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-04-26 17:35:28 +0200 |
commit | 3ad1c29aaef361d0a2a48b9314b17059a9a0b712 (patch) | |
tree | 8c7304ed7c56e3ad71652d82b927385b5b98dd49 | |
parent | 554128861c006bef5371932baf5698c234ae1219 (diff) |
*Fix Brutallus' spell Burn.
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellEffects.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index b92d69d6c1d..c38f46d867b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4840,6 +4840,13 @@ void Spell::EffectScriptEffect(uint32 effIndex) } // Force Cast - Portal Effect: Sunwell Isle case 44876: unitTarget->CastSpell(unitTarget, 44870, true); break; + // spell of Brutallus - Stomp + case 45185: + { + if(unitTarget->HasAura(46394, 0)) // spell of Brutallus - Burn + unitTarget->RemoveAurasDueToSpell(46394); + break; + } // Negative Energy case 46289: m_caster->CastSpell(unitTarget, 46285, true); break; //5,000 Gold |