From 771b3d7df941881317d0e5a15298cecf2262ed75 Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Sun, 8 Oct 2023 15:38:02 +0300 Subject: [PATCH] fix(DB/Spell): Allow Armor Shatter/Puncture armor to stack (#17429) --- .../updates/pending_db_world/rev_1696540155725328200.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1696540155725328200.sql diff --git a/data/sql/updates/pending_db_world/rev_1696540155725328200.sql b/data/sql/updates/pending_db_world/rev_1696540155725328200.sql new file mode 100644 index 000000000..b52c2bca2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1696540155725328200.sql @@ -0,0 +1,7 @@ +-- Annihilator - Armor Shatter +DELETE FROM `spell_custom_attr` WHERE `spell_id`=16928; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (16928, 4194304); + +-- Bashguuder & Bashguuder - Puncture Armor +DELETE FROM `spell_custom_attr` WHERE `spell_id`=17315; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (17315, 4194304);