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
  • Loading branch information
offl committed Mar 17, 2021
1 parent 96e1fd5 commit 4b73205
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sql/updates/world/3.3.5/2021_03_17_02_world.sql
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 4b73205

Please sign in to comment.