fix(Core/Spells): Drakkari Medicine Man Earth Shield max targets (#23102)

This commit is contained in:
Andrew 2025-10-07 04:41:15 -03:00 committed by GitHub
parent 79bb3230b1
commit 2c5aab9ed2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5151,6 +5151,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
});
// Earth Shield
ApplySpellFix({ 55599, 58981 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx5 |= SPELL_ATTR5_LIMIT_N;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];