fix(Scripts/Quest): Improve The Force of Neltharaku (#17088)

* fix(Scripts/quest): Improve The Force of Neltharaku

* update
This commit is contained in:
Grimgravy
2023-11-18 11:28:44 -03:00
committed by GitHub
parent d948a488cc
commit c6ae678382
3 changed files with 100 additions and 98 deletions

View File

@@ -4614,6 +4614,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->MaxAffectedTargets = 1;
});
// Force of Neltharaku
ApplySpellFix({ 38762 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].TargetA = SpellImplicitTargetInfo(TARGET_UNIT_TARGET_ANY);
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];