fix(Core/Scrips): Kologarn focused eyebeam should target only 1 target (#7405)

This commit is contained in:
lineagedr
2021-08-21 21:19:00 +03:00
committed by GitHub
parent 2ab032b6f3
commit e9f4006ed2

View File

@@ -7291,6 +7291,13 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->AttributesEx |= SPELL_ATTR1_NO_THREAT;
});
// Ulduar: Kologarn Focused Eyebeam Summon Trigger
ApplySpellFix({ 63342 }, [](SpellEntry* spellInfo)
{
spellInfo->MaxAffectedTargets = 1;
spellInfo->EffectImplicitTargetB[EFFECT_0] = 0;
});
for (uint32 i = 0; i < sSpellStore.GetNumRows(); ++i)
{
SpellEntry* spellInfo = (SpellEntry*)sSpellStore.LookupEntry(i);