From e1eaff8fbdc4fb348b343cd2ba8c0025f584fb2f Mon Sep 17 00:00:00 2001 From: Jinnaix Date: Sat, 21 Mar 2020 14:04:59 +0100 Subject: [PATCH] DB/Formation: Ragefire Chasm corrections Closes #24339 --- .../world/3.3.5/2020_03_21_03_world_335.sql | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_03_21_03_world_335.sql diff --git a/sql/updates/world/3.3.5/2020_03_21_03_world_335.sql b/sql/updates/world/3.3.5/2020_03_21_03_world_335.sql new file mode 100644 index 0000000000000..d9dacc3b01c5d --- /dev/null +++ b/sql/updates/world/3.3.5/2020_03_21_03_world_335.sql @@ -0,0 +1,29 @@ +-- Ragefire Chasm +-- Correction of current linking + +-- As seen from entering the area +-- Platform bottom right +DELETE FROM `creature_formations` WHERE `memberGUID` IN (48702,48701); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(48702, 48702, 0, 0, 3, 0, 0), +(48702, 48701, 0, 0, 3, 0, 0); + +-- Platform bottom left +DELETE FROM `creature_formations` WHERE `memberGUID` IN (48693,48692,48705); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(48693, 48693, 0, 0, 3, 0, 0), +(48693, 48692, 0, 0, 3, 0, 0), +(48693, 48705, 0, 0, 3, 0, 0); + +-- Platform top right +DELETE FROM `creature_formations` WHERE `memberGUID` IN (48721,48720,48719); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(48721, 48721, 0, 0, 3, 0, 0), +(48721, 48720, 0, 0, 3, 0, 0), +(48721, 48719, 0, 0, 3, 0, 0); + +-- Platform top left +DELETE FROM `creature_formations` WHERE `memberGUID` IN (48710,48709); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(48710, 48710, 0, 0, 3, 0, 0), +(48709, 48709, 0, 0, 3, 0, 0);