From ee596047d90c8f38a3b15bef5e750ede97fd53f4 Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Sun, 22 May 2022 00:29:12 +0300 Subject: [PATCH] fix(DB/Creature): BRD Detention Block - Link mobs in group pack (#11790) * Create rev_1652731923594016000.sql * missing ` --- .../rev_1652731923594016000.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1652731923594016000.sql diff --git a/data/sql/updates/pending_db_world/rev_1652731923594016000.sql b/data/sql/updates/pending_db_world/rev_1652731923594016000.sql new file mode 100644 index 000000000..f5fc0383e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1652731923594016000.sql @@ -0,0 +1,17 @@ +-- Dungeon/BRD Link mobs in the 2 rooms before High Interrogator Gerstahn (no previous creature_formations for the listed GUIDs) +-- Left room +DELETE FROM `creature_formations` WHERE `memberguid` IN (90695,91054,91082,90850); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(91054, 90695, 0, 0, 3, 0, 0), +(91054, 91054, 0, 0, 3, 0, 0), +(91054, 91082, 0, 0, 3, 0, 0), +(91054, 90850, 0, 0, 3, 0, 0); + +-- Right room +DELETE FROM `creature_formations` WHERE `memberguid` IN (91037,45892,91076,90899,91087); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(91037, 91037, 0, 0, 3, 0, 0), +(91037, 45892, 0, 0, 3, 0, 0), +(91037, 91076, 0, 0, 3, 0, 0), +(91037, 90899, 0, 0, 3, 0, 0), +(91037, 91087, 0, 0, 3, 0, 0);