From 20885578d889ff59100e3202f3c3a752039a9daf Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Wed, 19 Apr 2023 04:33:11 +0300 Subject: [PATCH] fix(DB/Spell): Fel Reaver Sentinel spells not having CD. (#15982) --- .../updates/pending_db_world/rev_1681729297995153300.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1681729297995153300.sql diff --git a/data/sql/updates/pending_db_world/rev_1681729297995153300.sql b/data/sql/updates/pending_db_world/rev_1681729297995153300.sql new file mode 100644 index 000000000..038e205de --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1681729297995153300.sql @@ -0,0 +1,7 @@ +-- Fel Reaver Sentinel +DELETE FROM `spell_cooldown_overrides` WHERE `Id` IN (38055,38006,38052,37920); +INSERT INTO `spell_cooldown_overrides` (`Id`, `RecoveryTime`, `CategoryRecoveryTime`, `StartRecoveryTime`, `StartRecoveryCategory`) VALUES +(38055, 10000, 10000, 0, 0), +(38006, 10000, 10000, 0, 0), +(38052, 15000, 15000, 0, 0), +(37920, 30000, 30000, 0, 0);