From 0d9bfdea16eced3db0e63ae8c893d22fb4855008 Mon Sep 17 00:00:00 2001 From: Duncan Steenburgh Date: Mon, 30 Aug 2021 02:43:32 -0500 Subject: [PATCH] fix(DB/spell_target_position): Fix teleport locations for Ulduar Teleporter (#7530) Previously, the locations for Spark of Imagination and Descent Into Madness were swapped. This commit swaps them back Closes #7108 --- .../pending_db_world/rev_1629787955866471200.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1629787955866471200.sql diff --git a/data/sql/updates/pending_db_world/rev_1629787955866471200.sql b/data/sql/updates/pending_db_world/rev_1629787955866471200.sql new file mode 100644 index 000000000..9d1c1741a --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1629787955866471200.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629787955866471200'); + +-- Fix location for spell: 'Halls of Invention Teleport' +UPDATE `spell_target_position` + SET `PositionX` = 2518.22, `PositionY` = 2569.11, `PositionZ` = 412.69, `Orientation` = 3.10668 + WHERE `ID` = 64025; + +-- Fix location for 'Prison of Yogg-Saron Teleport' +UPDATE `spell_target_position` + SET `PositionX` = 1854.8, `PositionY` = -11.46, `PositionZ` = 334.57, `Orientation` = 4.79266 + WHERE `ID` = 65042;