mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
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:
@@ -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;
|
||||
Reference in New Issue
Block a user