From 3cc3afbd830fff0a2e73869066f63907b9d5875a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20Costa?= <54484196+claudiodfc@users.noreply.github.com> Date: Sun, 16 Jan 2022 14:34:36 +0000 Subject: [PATCH] fix(DB/Formations): Molten Core Giants creature_formation (#10116) - Made formations to the giants to prevent them being pulled singlehandedly. > --- .../rev_1641841935074090300.sql | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1641841935074090300.sql diff --git a/data/sql/updates/pending_db_world/rev_1641841935074090300.sql b/data/sql/updates/pending_db_world/rev_1641841935074090300.sql new file mode 100644 index 000000000..9e83d1fed --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1641841935074090300.sql @@ -0,0 +1,27 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1641841935074090300'); + +-- Adding formations to Molten core Giants to prevent separate pulling +DELETE FROM `creature_formations` WHERE (`leaderGUID` IN (56712, 56701, 56719, 56711, 56708, 56707, 56703, 56748, 56717, 56714, 56705)); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES +(56712, 56712, 0, 0, 3), +(56712, 56713, 0, 0, 3), +(56701, 56701, 0, 0, 3), +(56701, 56700, 0, 0, 3), +(56719, 56719, 0, 0, 3), +(56719, 56718, 0, 0, 3), +(56711, 56711, 0, 0, 3), +(56711, 56710, 0, 0, 3), +(56708, 56708, 0, 0, 3), +(56708, 56709, 0, 0, 3), +(56707, 56707, 0, 0, 3), +(56707, 56706, 0, 0, 3), +(56703, 56703, 0, 0, 3), +(56703, 56702, 0, 0, 3), +(56748, 56748, 0, 0, 3), +(56748, 56747, 0, 0, 3), +(56717, 56717, 0, 0, 3), +(56717, 56716, 0, 0, 3), +(56714, 56714, 0, 0, 3), +(56714, 56715, 0, 0, 3), +(56705, 56705, 0, 0, 3), +(56705, 56704, 0, 0, 3);