fix(Core/Spells): Acid Splash can stack on Krik'thir the Gatewatcher (#23302)

This commit is contained in:
sogladev
2025-10-24 16:52:54 +02:00
committed by GitHub
parent 0a55aed5e4
commit 2c8e3b53d3
2 changed files with 8 additions and 0 deletions

View File

@@ -5157,6 +5157,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx5 |= SPELL_ATTR5_LIMIT_N;
});
// Acid Splash
ApplySpellFix({ 52446, 59363 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx3 |= SPELL_ATTR3_DOT_STACKING_RULE;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];