mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 13:46:24 +00:00
fix(Core/Scrips): Kologarn focused eyebeam should target only 1 target (#7405)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user