Skip to content

Commit

Permalink
DB/Creature: Fix movement states of Air Force guards
Browse files Browse the repository at this point in the history
Ref #23580

(cherry picked from commit 4b73205)
  • Loading branch information
offl authored and Shauren committed Mar 7, 2022
1 parent 4ef092c commit 8cb6247
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
--
UPDATE `creature_template_movement` SET `Ground` = 1 WHERE `CreatureId` IN (15241,15242,21976);
DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (22067,22077,22085,22089,22122);
INSERT INTO `creature_template_movement` (`CreatureId`,`Ground`,`Swim`,`Flight`,`Rooted`,`Chase`,`Random`) VALUES
(22067,1,0,1,0,0,0),
(22077,1,0,1,0,0,0),
(22085,1,0,1,0,0,0),
(22089,1,0,1,0,0,0),
(22122,1,0,1,0,0,0);

0 comments on commit 8cb6247

Please sign in to comment.