fix(Core/Spells): Wyvern Sting DoT (ranks 1-3) should considered as n… (#12803)

...egative spell.
This commit is contained in:
UltraNix
2022-08-28 07:08:06 +02:00
committed by GitHub
parent e5c6abddbe
commit ce27bbbc86

View File

@@ -4367,6 +4367,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPRESS_TARGET_PROCS;
});
// Wyvern Sting DoT
ApplySpellFix({ 24131, 24134, 24135 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].TargetA = SpellImplicitTargetInfo(TARGET_UNIT_TARGET_ENEMY);
});
// Feed Pet
ApplySpellFix({ 1539, 51284 }, [](SpellInfo* spellInfo)
{