From 87effd1841269c377a67cb2789582ad7c91b36c3 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Wed, 19 Mar 2025 23:43:09 +0100 Subject: [PATCH] fix(DB/Creature) Add formation for the the last pack before Kalecgos. (#21735) --- data/sql/updates/pending_db_world/CF_pack.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/CF_pack.sql diff --git a/data/sql/updates/pending_db_world/CF_pack.sql b/data/sql/updates/pending_db_world/CF_pack.sql new file mode 100644 index 000000000..ae1decf1d --- /dev/null +++ b/data/sql/updates/pending_db_world/CF_pack.sql @@ -0,0 +1,10 @@ + +-- Add creature formation for the last pack before Kalecgos +DELETE FROM `creature_formations` WHERE `leaderGUID` = 54834; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(54834, 54834, 0, 0, 3, 0, 0), +(54834, 43654, 0, 0, 3, 0, 0), +(54834, 42573, 0, 0, 3, 0, 0), +(54834, 42574, 0, 0, 3, 0, 0), +(54834, 54817, 0, 0, 3, 0, 0), +(54834, 42656, 0, 0, 3, 0, 0);