From 9343cb513717f9df9a485fe9e5db76a0ba637542 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Sat, 24 Jul 2021 03:15:34 +0200 Subject: [PATCH] fix(DB/Spell): Syndicate Conjuror continues casting "Bright Campfire" when attacked (#7045) I changed the cast flag of the shadowbolt so if on combat they will stop the casting of the bonefire --- .../sql/updates/pending_db_world/rev_1626804070827928100.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626804070827928100.sql diff --git a/data/sql/updates/pending_db_world/rev_1626804070827928100.sql b/data/sql/updates/pending_db_world/rev_1626804070827928100.sql new file mode 100644 index 000000000..9173bd05d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626804070827928100.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626804070827928100'); + +-- Changed the param of the shadow bolt so it will stop any spells being casted at the moment +UPDATE `smart_scripts` SET `action_param2` = 1 WHERE (`entryorguid` = 2590) AND (`source_type` = 0) AND (`id` IN (2)); +