From 2c8e3b53d31c47dc67aa9764d2d9d2e3941295de Mon Sep 17 00:00:00 2001 From: sogladev Date: Fri, 24 Oct 2025 16:52:54 +0200 Subject: [PATCH] fix(Core/Spells): Acid Splash can stack on Krik'thir the Gatewatcher (#23302) --- .../updates/pending_db_world/rev_1760816979895001416.sql | 2 ++ src/server/game/Spells/SpellInfoCorrections.cpp | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1760816979895001416.sql diff --git a/data/sql/updates/pending_db_world/rev_1760816979895001416.sql b/data/sql/updates/pending_db_world/rev_1760816979895001416.sql new file mode 100644 index 000000000..d712a3d86 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1760816979895001416.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 13) AND (`SourceGroup` = 1) AND (`SourceEntry` = 52446) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 31) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 3) AND (`ConditionValue2` = 28684) AND (`ConditionValue3` = 0); diff --git a/src/server/game/Spells/SpellInfoCorrections.cpp b/src/server/game/Spells/SpellInfoCorrections.cpp index 6712f1109..77057e798 100644 --- a/src/server/game/Spells/SpellInfoCorrections.cpp +++ b/src/server/game/Spells/SpellInfoCorrections.cpp @@ -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];