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>
This commit is contained in:
avarishd
2023-03-05 22:32:51 +02:00
committed by GitHub
parent f4bff8b41c
commit bc19347ffc

View File

@@ -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;