From 0210f617c191591f8ffe0c958eb957c978ec4551 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Sat, 22 Mar 2025 13:54:21 +0100 Subject: [PATCH] fix(Creature/Formations) Volatile Fiend Packs now are in formation. (#21750) --- .../pending_db_world/Volatile_Fiend_Packs.sql | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Volatile_Fiend_Packs.sql diff --git a/data/sql/updates/pending_db_world/Volatile_Fiend_Packs.sql b/data/sql/updates/pending_db_world/Volatile_Fiend_Packs.sql new file mode 100644 index 000000000..95702495f --- /dev/null +++ b/data/sql/updates/pending_db_world/Volatile_Fiend_Packs.sql @@ -0,0 +1,20 @@ + +-- Pack after Eredar Twins +DELETE FROM `creature_formations` WHERE `leaderGUID` = 47607; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(47607, 47607, 0, 0, 3, 0, 0), +(47607, 47313, 0, 0, 3, 0, 0), +(47607, 47471, 0, 0, 3, 0, 0), +(47607, 47768, 0, 0, 3, 0, 0), +(47607, 47608, 0, 0, 3, 0, 0), +(47607, 47769, 0, 0, 3, 0, 0); + +-- Pack before M'uru +DELETE FROM `creature_formations` WHERE `leaderGUID` = 47470; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(47470, 47470, 0, 0, 3, 0, 0), +(47470, 47475, 0, 0, 3, 0, 0), +(47470, 47578, 0, 0, 3, 0, 0), +(47470, 47875, 0, 0, 3, 0, 0), +(47470, 47897, 0, 0, 3, 0, 0), +(47470, 47884, 0, 0, 3, 0, 0);