From 3d0a16043b649ab6bd08000cf1ac77fe0bd409d2 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Mon, 8 Mar 2021 22:51:51 +0100 Subject: [PATCH] DB/Creatures: fixed flight movement for several creatures in the Blasted Lands --- sql/updates/world/4.3.4/2021_03_08_01_world.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/4.3.4/2021_03_08_01_world.sql diff --git a/sql/updates/world/4.3.4/2021_03_08_01_world.sql b/sql/updates/world/4.3.4/2021_03_08_01_world.sql new file mode 100644 index 00000000000..48554184fa9 --- /dev/null +++ b/sql/updates/world/4.3.4/2021_03_08_01_world.sql @@ -0,0 +1,5 @@ +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (5983, 42235, 42338); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Flight`) VALUES +(5983, 2, 1), +(42235, 2, 1), +(42338, 2, 1);