fix(DB/Spell): Furious Howl & Call of the Wild (#6047)

- Fix Furious Howl (Rank 1) from applying to party members
- Move Furious Howl & Call of the Wild to DB
This commit is contained in:
Kitzunu
2021-06-02 12:38:28 +02:00
committed by GitHub
parent e1935e2b65
commit 7cb967fb56
2 changed files with 12 additions and 18 deletions

View File

@@ -3875,24 +3875,6 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->DmgClass = SPELL_DAMAGE_CLASS_MAGIC;
});
// Furious Howl
ApplySpellFix({ 64491, 64492, 64493, 64494, 64495 }, [](SpellEntry* spellInfo)
{
spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_CASTER;
spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_MASTER;
spellInfo->EffectImplicitTargetA[1] = TARGET_UNIT_CASTER;
spellInfo->EffectImplicitTargetB[1] = TARGET_UNIT_MASTER;
});
// Call of the Wild
ApplySpellFix({ 53434 }, [](SpellEntry* spellInfo)
{
spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_MASTER;
spellInfo->EffectImplicitTargetA[1] = TARGET_UNIT_MASTER;
spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_CASTER;
spellInfo->EffectImplicitTargetB[1] = TARGET_UNIT_CASTER;
});
// Wild Hunt
ApplySpellFix({ 62758, 62762 }, [](SpellEntry* spellInfo)
{