fix(Core/Spells): Fix Gurtogg Bloodboil applying Acid Wound to himself (#20394)

This commit is contained in:
Andrew 2024-11-01 14:09:13 -03:00 committed by GitHub
parent 81ba01d2c1
commit 7a2b86425f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4856,6 +4856,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPPRESS_CASTER_PROCS;
});
// Fury
ApplySpellFix({ 40601 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPPRESS_CASTER_PROCS;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];