From aae5a1919f0d8207982a3513338e8f5a5c48b1bd Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Thu, 16 Nov 2023 19:59:27 +0200 Subject: [PATCH] fix(DB/Creature): Add Fear proc aura to Fear Fiend (#17735) * fix(DB/Creature): Add Fear proc to Fear Fiend * creature_template_spell * index --- .../updates/pending_db_world/rev_1700133549563685500.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1700133549563685500.sql diff --git a/data/sql/updates/pending_db_world/rev_1700133549563685500.sql b/data/sql/updates/pending_db_world/rev_1700133549563685500.sql new file mode 100644 index 000000000..72b5984c9 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1700133549563685500.sql @@ -0,0 +1,7 @@ +-- Fear Fiend +UPDATE `creature_template_addon` SET `auras` = '35408' WHERE `entry` = 22204; + +DELETE FROM `creature_template_spell` WHERE `CreatureID` = 22204; +INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES +(22204, 4, 36248, 0), +(22204, 5, 34259, 0);