fix(Core/Spells): Added 3y radius to Feral Charge. (#7901)

Fixes #7762
This commit is contained in:
UltraNix
2021-10-01 09:49:13 +02:00
committed by GitHub
parent 10d59ec6ba
commit c477a0533c

View File

@@ -4619,8 +4619,14 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->AttributesEx &= ~SPELL_ATTR1_IMMUNITY_TO_HOSTILE_AND_FRIENDLY_EFFECTS;
});
ApplySpellFix({ 49376 }, [](SpellEntry* spellInfo)
{
spellInfo->EffectRadiusIndex[EFFECT_1] = EFFECT_RADIUS_3_YARDS; // 3yd
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPRESS_TARGET_PROCS;
});
// Feral Charge - Cat
ApplySpellFix({ 49376, 61138, 61132, 50259 }, [](SpellEntry* spellInfo)
ApplySpellFix({ 61138, 61132, 50259 }, [](SpellEntry* spellInfo)
{
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPRESS_TARGET_PROCS;
});