From d57d44fe2703e84fbcf14ec72b1a06b63dce1da6 Mon Sep 17 00:00:00 2001 From: cala Date: Thu, 7 Jul 2016 21:36:29 +0100 Subject: [PATCH] Add support for spell 28352 Spell 28352 (Breath of Sargeras) is cast on all enemy targets in range and now properly triggers the Breath of Sargeras (spell 28342) individual debuff --- src/game/WorldHandlers/SpellEffects.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/game/WorldHandlers/SpellEffects.cpp b/src/game/WorldHandlers/SpellEffects.cpp index 70475497..e0c74df1 100644 --- a/src/game/WorldHandlers/SpellEffects.cpp +++ b/src/game/WorldHandlers/SpellEffects.cpp @@ -3698,6 +3698,15 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) unitTarget->CastSpell(unitTarget, 27699, true); return; } + case 28352: // Breath of Sargeras + { + if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) + { return; } + + unitTarget->CastSpell(unitTarget, 28342, true); + return; + } + case 28374: // Decimate (Naxxramas: Gluth) { if (!unitTarget)