From cf5ee62b706b6407d350db0c835ca7d386acf0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20Costa?= <54484196+claudiodfc@users.noreply.github.com> Date: Sat, 22 Jan 2022 15:47:04 +0000 Subject: [PATCH] fix(DB): UBRS Creature formations (#10233) - Added creature_formation to the packs inside Drakkisath's chamber, on the bridge and the first near the bridge. --- .../rev_1641999047507916400.sql | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1641999047507916400.sql diff --git a/data/sql/updates/pending_db_world/rev_1641999047507916400.sql b/data/sql/updates/pending_db_world/rev_1641999047507916400.sql new file mode 100644 index 000000000..af9d7c7c1 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1641999047507916400.sql @@ -0,0 +1,23 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1641999047507916400'); + +DELETE FROM `creature_formations` WHERE (`leaderGUID` IN (137960, 137956, 137852, 137977)); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES +(137960, 137960, 0, 0, 3), +(137960, 137978, 0, 0, 3), +(137960, 137858, 0, 0, 3), +(137960, 137985, 0, 0, 3), + +(137956, 137956, 0, 0, 3), +(137956, 137996, 0, 0, 3), +(137956, 137862, 0, 0, 3), +(137956, 137857, 0, 0, 3), +(137956, 137965, 0, 0, 3), + +(137852, 137852, 0, 0, 3), +(137852, 137995, 0, 0, 3), +(137852, 137850, 0, 0, 3), +(137852, 137989, 0, 0, 3), + +(137977, 137977, 0, 0, 3), +(137977, 137964, 0, 0, 3), +(137977, 137853, 0, 0, 3);