fix(Core/Spells): Greater Fireball should ignore resistances (#19326)
* fix(Core/Spells): Greater Fireball should ignore resistances * SPELL_ATTR4_IGNORE_ALL_RESISTANCES * Revert "SPELL_ATTR4_IGNORE_ALL_RESISTANCES" This reverts commit 2480fac3d5b295121a79989b4257ab990fd90f5e.
This commit is contained in:
@@ -4807,6 +4807,12 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||||||
spellInfo->Effects[EFFECT_0].TriggerSpell = 38530; // Quest Credit for Eye of Grillok
|
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)
|
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||||
{
|
{
|
||||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||||
|
|||||||
Reference in New Issue
Block a user