From 5424a787cab80f6698c907a6689e7657f7ca22f8 Mon Sep 17 00:00:00 2001 From: Winchester1987 Date: Sat, 1 Sep 2018 15:29:02 +0200 Subject: [PATCH] DB/Creature: Fix Sindragosa movements Closes #22358 (cherry picked from commit 9ace4093d8cf67ba54912038f93fa42d3aa14b9c) --- .../master/2021_10_23_08_world_2018_09_01_01_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql diff --git a/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql b/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql new file mode 100644 index 0000000000..ca957cf070 --- /dev/null +++ b/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (36853, 38265, 38266, 38267); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(36853, 1, 0, 2, 0), +(38265, 1, 0, 2, 0), +(38266, 1, 0, 2, 0), +(38267, 1, 0, 2, 0);