diff options
author | Killyana <morphone1@gmail.com> | 2019-02-01 21:44:17 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-23 20:44:33 +0100 |
commit | 13aef5574b966c801a4f8ee53e3bff9142c3358f (patch) | |
tree | 82c2bf0df4526f09b9291c21f1905c1bb257f812 | |
parent | a482f97a5a5aee6ec6b6f8ecf5e98a695bca88aa (diff) |
DB/Creature: Fix Saviana Ragefire movements
Closes #18773
(cherry picked from commit b1604ba0cd6db77cf168f957e828984811735bc1)
-rw-r--r-- | sql/updates/world/master/2021_11_23_07_world_2019_02_01_01_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_23_07_world_2019_02_01_01_world.sql b/sql/updates/world/master/2021_11_23_07_world_2019_02_01_01_world.sql new file mode 100644 index 00000000000..92f492f6496 --- /dev/null +++ b/sql/updates/world/master/2021_11_23_07_world_2019_02_01_01_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (39747, 39823); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(39747, 2, 1, 2, 0), +(39823, 2, 1, 2, 0); |