fix(Core/Spells): Cleasing, Healing Stream Mana Tide totems should ig… (#14679)

This commit is contained in:
UltraNix
2023-01-31 14:53:17 +01:00
committed by GitHub
parent 50e2eb8593
commit 8981f58682

View File

@@ -4471,6 +4471,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AuraInterruptFlags &= ~AURA_INTERRUPT_FLAG_NOT_SEATED;
});
// Cleansing Totem, Healing Stream Totem, Mana Tide Totem
ApplySpellFix({ 8171,52025, 52041, 52042, 52046, 52047, 52048, 52049, 52050, 58759, 58760, 58761, 39610, 39609 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];