mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-03-15 13:35:08 +00:00
fix(Core/Spells): Make Illidan's Demon Fire Unable to Miss (#24994)
This commit is contained in:
@@ -1499,7 +1499,7 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_DOT_STACKING_RULE;
|
||||
});
|
||||
|
||||
// Activate Sunblade Protecto
|
||||
// Activate Sunblade Protector
|
||||
ApplySpellFix({ 46475, 46476 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(14); // 60yd
|
||||
@@ -1546,14 +1546,21 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
spellInfo->AttributesEx6 |= SPELL_ATTR6_IGNORE_PHASE_SHIFT;
|
||||
});
|
||||
|
||||
// Parasitic Shadowfiend
|
||||
// Illidan Stormrage - Parasitic Shadowfiend
|
||||
ApplySpellFix({ 41914 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->Attributes |= SPELL_ATTR0_AURA_IS_DEBUFF;
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_DOT_STACKING_RULE;
|
||||
});
|
||||
|
||||
// Teleport Maiev
|
||||
// Illidan Stormrage - Demon Fire
|
||||
ApplySpellFix({ 40030 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
|
||||
spellInfo->AttributesEx4 &= ~SPELL_ATTR4_NO_CAST_LOG;
|
||||
});
|
||||
|
||||
// Illidan Stormrage - Teleport Maiev
|
||||
ApplySpellFix({ 41221 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(13); // 0-50000yd
|
||||
|
||||
Reference in New Issue
Block a user