fix(Core/Spells): Script Choking Vines (#17615)

* fix(DB/Custom): Choking Vines should stack from different sources

* script spell

* comment
This commit is contained in:
avarishd
2023-11-02 13:53:45 +02:00
committed by GitHub
parent 9e10d1852e
commit bc688c2a51
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
-- Choking Vines
DELETE FROM `spell_custom_attr` WHERE `spell_id`=35244;
INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (35244, 4194304);
DELETE FROM `spell_script_names` WHERE `spell_id`=35244 AND `ScriptName`='spell_gen_choking_vines';
INSERT INTO `spell_script_names` VALUES (35244, 'spell_gen_choking_vines');