fix(Core/Spells): Implemented SPELL_ATTR0_CU_IGNORE_EVADE. (#10832)

Added channel beam at Razorgore pre-fight.
Fixed #10767
This commit is contained in:
UltraNix
2022-03-06 18:26:00 +01:00
committed by GitHub
parent dadbb829f1
commit a74e57fb22
5 changed files with 16 additions and 2 deletions

View File

@@ -4210,6 +4210,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
});
// Cosmetic - Lightning Beam Channel
ApplySpellFix({ 45537 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];