From bc19347ffc2cc0fc02c1c880b82fc88191994bb3 Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Sun, 5 Mar 2023 22:32:51 +0200 Subject: [PATCH] fix(DB/Creature): Add missing spell to Infected Kodo Beast & disable gravity for Column Ornament (#15087) Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com> --- .../updates/pending_db_world/rev_1676663461812301700.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1676663461812301700.sql diff --git a/data/sql/updates/pending_db_world/rev_1676663461812301700.sql b/data/sql/updates/pending_db_world/rev_1676663461812301700.sql new file mode 100644 index 000000000..91de9ef9e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1676663461812301700.sql @@ -0,0 +1,8 @@ +-- Infected Kodo Beast - add missing ability, Stampede. +DELETE FROM `creature_template_spell` WHERE `CreatureID`=25596; +INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES +(25596, 0, 45876, 12340), +(25596, 1, 45877, 12340); + +-- Column Ornament - disable gravity, previously falling to the ground. +UPDATE `creature_template_movement` SET `Flight` = 1 WHERE `CreatureId` = 29754;