diff options
author | megamage <none@none> | 2009-08-17 15:59:39 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-17 15:59:39 -0500 |
commit | 1aa4fb84d07bf4dd7feae03104321733e3a53567 (patch) | |
tree | 7515aa09426825bba97ec0e573dfaba96bc35174 /src | |
parent | 6a9693a1e470d8460c37b9159a878ea3c87913ea (diff) |
[8370] Implement dummy auras for spell 36730 and 44191.
Signed-off-by: NoFantasy <nofantasy@nf.no>
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index bf9496a3d6b..9ef7c03ab1a 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2728,6 +2728,21 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real, bool changeAmount) if(BattleGround *bg = ((Player*)m_target)->GetBattleGround()) bg->RemovePlayerFromResurrectQueue(m_target->GetGUID()); return; + case 36730: // Flame Strike + { + m_target->CastSpell(m_target, 36731, true, NULL, this); + return; + } + case 44191: // Flame Strike + { + if (m_target->GetMap()->IsDungeon()) + { + uint32 spellId = m_target->GetMap()->IsHeroic() ? 46163 : 44190; + + m_target->CastSpell(m_target, spellId, true, NULL, this); + } + return; + } case 42783: // Wrath of the Astromancer m_target->CastSpell(m_target,m_amount,true,NULL,this); return; |