fix(Core/Spells): Greater Fireball should ignore resistances

This commit is contained in:
avarishd
2024-07-06 23:55:14 +03:00
parent f85d8433a6
commit 35c72ebb33

View File

@@ -4807,6 +4807,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].TriggerSpell = 38530; // Quest Credit for Eye of Grillok
});
// Greater Fireball
ApplySpellFix({ 33051 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx4 |= SPELL_ATTR4_NO_CAST_LOG;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];