From ee8f5f0748b2e96f7db9748ec72faf70ae84c062 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 --- sql/updates/world/3.3.5/2018_09_01_01_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/3.3.5/2018_09_01_01_world.sql diff --git a/sql/updates/world/3.3.5/2018_09_01_01_world.sql b/sql/updates/world/3.3.5/2018_09_01_01_world.sql new file mode 100644 index 00000000000..ca957cf0703 --- /dev/null +++ b/sql/updates/world/3.3.5/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);