From 7521c2ebfa284c63763b65cc6a0ecbf03763bc3e Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Mon, 15 Jun 2020 04:47:28 +0200 Subject: [PATCH] DB/ScarletEnclave: ported commit bbb308f62824bcc2415b64c9a434d1a51b4142f4 and fixed some quest ender and movement template data --- sql/updates/world/4.3.4/2020_06_15_00_world.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sql/updates/world/4.3.4/2020_06_15_00_world.sql diff --git a/sql/updates/world/4.3.4/2020_06_15_00_world.sql b/sql/updates/world/4.3.4/2020_06_15_00_world.sql new file mode 100644 index 00000000000..746dcfda467 --- /dev/null +++ b/sql/updates/world/4.3.4/2020_06_15_00_world.sql @@ -0,0 +1,11 @@ +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (28935, 28534); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Flight`) VALUES +(28935, 1, 1), +(28534, 1, 1); + +UPDATE `smart_scripts` SET `action_type`=46 WHERE `entryorguid`=2861001 AND `id`=2 AND `source_type`=9; + +DELETE FROM `gameobject_questender` WHERE `id`= 190936; +INSERT INTO `gameobject_questender` (`id`, `quest`) VALUES +(190936, 12717), +(190936, 12718);