fix(DB/SAI): Portal Keepers now uses the correct Arcane Missiles spell (#22209)

This commit is contained in:
avarishd
2025-05-27 16:37:52 +03:00
committed by GitHub
parent 61273296d5
commit d6a21a53db
2 changed files with 17 additions and 0 deletions

View File

@@ -5123,6 +5123,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].Effect = SPELL_EFFECT_SUMMON_OBJECT_SLOT1;
});
// Arcane Missiles
ApplySpellFix({ 58529, 61592 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].TargetA = SpellImplicitTargetInfo(TARGET_UNIT_TARGET_ENEMY);
});
// Siphon Bloodgem
ApplySpellFix({ 34367 }, [](SpellInfo* spellInfo)
{