From 556c01fc91d59fecf7ce44039968484555921e62 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Fri, 20 Mar 2026 20:42:30 -0500 Subject: [PATCH] fix(DB/Spell): Add internal cooldown to Spirit Burn proc (#25129) Co-authored-by: blinkysc --- data/sql/updates/pending_db_world/rev_1773945980134291128.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1773945980134291128.sql diff --git a/data/sql/updates/pending_db_world/rev_1773945980134291128.sql b/data/sql/updates/pending_db_world/rev_1773945980134291128.sql new file mode 100644 index 000000000..6de026bd8 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1773945980134291128.sql @@ -0,0 +1,3 @@ +-- Spirit Burn (54647) - Add 10s internal cooldown +DELETE FROM `spell_proc` WHERE `SpellId` = 54647; +INSERT INTO `spell_proc` (`SpellId`, `Cooldown`) VALUES (54647, 8000);