fix(DB/Oculus): Add various formations. (#22885)

This commit is contained in:
Rocco Silipo
2025-09-12 00:00:15 +02:00
committed by GitHub
parent f893df775c
commit 3400f919b7

View File

@@ -0,0 +1,30 @@
-- Add Creature Formations
DELETE FROM `creature_formations` WHERE (`LeaderGUID` IN (101902, 101916, 101917, 101918, 101919, 101937));
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(101902, 101902, 0, 0, 3, 0, 0),
(101902, 101922, 0, 0, 3, 0, 0),
(101902, 101924, 0, 0, 3, 0, 0),
(101902, 101933, 0, 0, 3, 0, 0),
(101916, 101916, 0, 0, 3, 0, 0),
(101916, 102064, 0, 0, 3, 0, 0),
(101916, 101967, 0, 0, 3, 0, 0),
(101916, 101974, 0, 0, 3, 0, 0),
(101917, 101917, 0, 0, 3, 0, 0),
(101917, 101895, 0, 0, 3, 0, 0),
(101917, 101896, 0, 0, 3, 0, 0),
(101917, 101907, 0, 0, 3, 0, 0),
(101918, 101918, 0, 0, 3, 0, 0),
(101918, 101897, 0, 0, 3, 0, 0),
(101918, 101898, 0, 0, 3, 0, 0),
(101918, 101909, 0, 0, 3, 0, 0),
(101919, 101919, 0, 0, 3, 0, 0),
(101919, 101899, 0, 0, 3, 0, 0),
(101919, 101900, 0, 0, 3, 0, 0),
(101919, 101910, 0, 0, 3, 0, 0),
(101919, 101912, 0, 0, 3, 0, 0),
(101937, 101937, 0, 0, 3, 0, 0),
(101937, 101903, 0, 0, 3, 0, 0),
(101937, 101904, 0, 0, 3, 0, 0),
(101937, 101914, 0, 0, 3, 0, 0),
(101937, 101915, 0, 0, 3, 0, 0);