fix(DB/Creature) Add CTM to 4 flying creatures (#12182)

* Create ctm_1.sql

* Update ctm_1.sql

* Update ctm_1.sql
This commit is contained in:
Gultask
2022-07-01 17:50:40 -03:00
committed by GitHub
parent 7df342b41c
commit 211a6d4c08

View File

@@ -0,0 +1,6 @@
--
DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (15242, 18707, 22441, 8276);
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`) VALUES (15242, 1, 0, 1, 0, 0, 0),
(18707, 1, 0, 1, 0, 0, 0),
(22441, 1, 0, 1, 0, 0, 0),
(8276, 1, 0, 1, 0, 0, 0);