From 2877502fb337b3ee1fd1469906d0caf2c35506d6 Mon Sep 17 00:00:00 2001 From: v-mstrs <104088833+v-mstrs@users.noreply.github.com> Date: Wed, 13 Aug 2025 13:35:27 +0200 Subject: [PATCH] fix(DB/Spell): Allow Poison Bolt to stack (#22668) --- .../updates/pending_db_world/rev_1754910707047949800.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1754910707047949800.sql diff --git a/data/sql/updates/pending_db_world/rev_1754910707047949800.sql b/data/sql/updates/pending_db_world/rev_1754910707047949800.sql new file mode 100644 index 000000000..d9231f97d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1754910707047949800.sql @@ -0,0 +1,7 @@ +-- Anub'ar Venomancer - Poison Bolt +DELETE FROM `spell_custom_attr` WHERE `spell_id` = 53617; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (53617, 4194304); + +-- Anub'ar Venomancer - Poison Bolt(H) +DELETE FROM `spell_custom_attr` WHERE `spell_id` = 59359; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (59359, 4194304);