fix(Scripts/ZulAman): Fix Vortex not following players and also spell… (#20780)

* fix(Scripts/ZulAman): Fix Vortex not following players and also spell missing

* Update boss_zuljin.cpp
This commit is contained in:
Andrew
2024-11-30 12:28:19 -03:00
committed by GitHub
parent 6b5f50cdbe
commit afc81098f2
2 changed files with 20 additions and 13 deletions

View File

@@ -4856,6 +4856,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AuraInterruptFlags &= ~(AURA_INTERRUPT_FLAG_CHANGE_MAP | AURA_INTERRUPT_FLAG_TELEPORTED);
});
// Summon Cyclone
ApplySpellFix({ 43112 }, [](SpellInfo* spellInfo)
{
spellInfo->RequiresSpellFocus = 0;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];