Scripts/Icecrown Citadel: Fixed Lord Marrowgar - Coldflame to not ignore resistances (#20146)

Closes #13240

(cherry picked from commit 7b747848ed)
This commit is contained in:
Demonid
2017-08-15 02:49:34 -07:00
committed by Shauren
parent 5e39572c06
commit fa762826e9

View File

@@ -3467,6 +3467,12 @@ void SpellMgr::LoadSpellInfoCorrections()
const_cast<SpellEffectInfo*>(spellInfo->GetEffect(EFFECT_0))->TargetA = SpellImplicitTargetInfo(TARGET_DEST_DB);
});
// Coldflame (Lord Marrowgar)
ApplySpellFix({ 69146, 70823, 70824, 70825 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx4 &= ~SPELL_ATTR4_IGNORE_RESISTANCES;
});
// Shadow's Fate
ApplySpellFix({ 71169 }, [](SpellInfo* spellInfo)
{