From f5d01baa0cf330a04b9f206cd275af5609042bf3 Mon Sep 17 00:00:00 2001 From: Nefertumm Date: Sat, 26 Mar 2022 23:03:44 -0300 Subject: [PATCH] fix(DB/Formations): Death Talon Wyrmguard should be linked (#11068) --- .../updates/pending_db_world/rev_1647566741929769300.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1647566741929769300.sql diff --git a/data/sql/updates/pending_db_world/rev_1647566741929769300.sql b/data/sql/updates/pending_db_world/rev_1647566741929769300.sql new file mode 100644 index 000000000..58bd761c0 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1647566741929769300.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1647566741929769300'); + +SET @LEADERGUID := 84648; +DELETE FROM `creature_formations` WHERE `memberGUID` IN (@LEADERGUID, 84639, 84650); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES +(@LEADERGUID, @LEADERGUID, 0, 0, 3), +(@LEADERGUID, 84639, 0, 0, 3), +(@LEADERGUID, 84650, 0, 0, 3);