From ac8762138aab8b67a4efa42c7591561a75be280a Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Sun, 5 Dec 2021 05:28:53 +1030 Subject: [PATCH] fix(DB/formations): Adds formations to two groups in UBRS (#9494) --- .../pending_db_world/rev_1638624697731724160.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1638624697731724160.sql diff --git a/data/sql/updates/pending_db_world/rev_1638624697731724160.sql b/data/sql/updates/pending_db_world/rev_1638624697731724160.sql new file mode 100644 index 000000000..9b13f017b --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1638624697731724160.sql @@ -0,0 +1,16 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1638624697731724160'); + +-- groups Rage Talon Captains 137860 and 137861 with their formations +DELETE FROM `creature_formations` WHERE `leaderGUID` IN (137860, 137861); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(137860, 137860, 0, 0, 3, 0, 0), +(137860, 137866, 0, 0, 3, 0, 0), +(137860, 137961, 0, 0, 3, 0, 0), +(137860, 137963, 0, 0, 3, 0, 0), +(137860, 137994, 0, 0, 3, 0, 0), +(137861, 137861, 0, 0, 3, 0, 0), +(137861, 137867, 0, 0, 3, 0, 0), +(137861, 137982, 0, 0, 3, 0, 0), +(137861, 137981, 0, 0, 3, 0, 0), +(137861, 137863, 0, 0, 3, 0, 0); +