From f4a5907a549a5c36037a662b9ce6e6fb0ad853f0 Mon Sep 17 00:00:00 2001 From: aradep <61268368+aradep@users.noreply.github.com> Date: Fri, 6 Nov 2020 05:07:38 -0400 Subject: [PATCH] fix(DB/waypoint_data): Ulduar Colossus path fix (#3601) --- .../pending_db_world/rev_1603401587698987500.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1603401587698987500.sql diff --git a/data/sql/updates/pending_db_world/rev_1603401587698987500.sql b/data/sql/updates/pending_db_world/rev_1603401587698987500.sql new file mode 100644 index 000000000..39c23a324 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1603401587698987500.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1603401587698987500'); + +-- Ulduar Colossus bridge pathing fix -- +DELETE FROM `waypoint_data` WHERE `id` = 1374780; +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES +(1374780, 1, 71.3266, -170.786, 410.72), +(1374780, 2, 71.3266, -212.300, 418.99), +(1374780, 3, 71.3266, -232.054, 418.99), +(1374780, 4, 71.3266, -263.742, 413.42), +(1374780, 5, 71.3266, -232.054, 418.99), +(1374780, 6, 71.3266, -212.300, 418.99);