fix(Core/Spells): Script Lord Valthalak's Amulet (#17431)

* fix(Core/Spells): Script Lord Valthalak's Amulet

* cs
This commit is contained in:
avarishd
2023-10-07 13:34:35 +03:00
committed by GitHub
parent 4d285d21b0
commit 91c6bdd540
3 changed files with 40 additions and 0 deletions

View File

@@ -4572,6 +4572,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(13); // 50000yd
});
// Instill Lord Valthalak's Spirit DND
ApplySpellFix({ 27360 }, [](SpellInfo* spellInfo)
{
spellInfo->ChannelInterruptFlags |= AURA_INTERRUPT_FLAG_MOVE;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];