diff options
| author | Demonid <Demonidpvp@gmail.com> | 2017-08-15 02:49:34 -0700 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2017-08-15 11:49:34 +0200 |
| commit | 7b747848ede0bdb7e12374d3560059ec708e177a (patch) | |
| tree | 7fe69f8bc37634e3e1376e9a16128421515377fe /src | |
| parent | d09de6425ca789bed991f1e80652d57a7c5ff37b (diff) | |
Scripts/Icecrown Citadel: Fixed Lord Marrowgar - Coldflame to not ignore resistances (#20146)
Closes #13240
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index aaf59c83920..4e80005fa89 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3898,6 +3898,12 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->Effects[EFFECT_0].RadiusEntry = sSpellRadiusStore.LookupEntry(EFFECT_RADIUS_100_YARDS); // 100yd }); + // Coldflame (Lord Marrowgar) + ApplySpellFix({ 69146, 70823, 70824, 70825 }, [](SpellInfo* spellInfo) + { + spellInfo->AttributesEx4 &= ~SPELL_ATTR4_IGNORE_RESISTANCES; + }); + // Shadow's Fate ApplySpellFix({ 71169 }, [](SpellInfo* spellInfo) { |
