Skip to content

Commit

Permalink
fix(Core/Spells): Wyvern Sting DoT (ranks 1-3) should considered as n… (
Browse files Browse the repository at this point in the history
azerothcore#12803)

...egative spell.
  • Loading branch information
UltraNix committed Aug 28, 2022
1 parent e5c6abd commit ce27bbb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/server/game/Spells/SpellInfoCorrections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit ce27bbb

Please sign in to comment.