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:
parent
4b62083dc9
commit
3db58e7086
1 changed files with 6 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue