fix(DB/Creature): Link Durnholde Lodges formation (#19159)

* fix(DB/Formations): Link Durnholde Lodges

* ?

* ??
This commit is contained in:
avarishd 2024-06-25 23:37:11 +03:00 committed by GitHub
parent cc31430368
commit 3b7049895c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,24 @@
-- Durnholde Lodges (First one was already linked)
-- "Additional NPCs" 83958 & 83934
UPDATE `creature_formations` SET `groupAI` = 3 WHERE `leaderGUID` = 83929;
DELETE FROM `creature_formations` WHERE `leaderGUID` IN (83927,83922,83948,77820);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(83927, 83927, 0, 0, 3, 0, 0),
(83927, 83926, 0, 0, 3, 0, 0),
(83927, 83987, 0, 0, 3, 0, 0),
(83927, 77817, 0, 0, 3, 0, 0),
(83927, 83934, 0, 0, 3, 0, 0),
(83922, 83922, 0, 0, 3, 0, 0),
(83922, 83923, 0, 0, 3, 0, 0),
(83922, 77818, 0, 0, 3, 0, 0),
(83922, 83924, 0, 0, 3, 0, 0),
(83948, 83948, 0, 0, 3, 0, 0),
(83948, 83949, 0, 0, 3, 0, 0),
(83948, 77819, 0, 0, 3, 0, 0),
(83948, 83959, 0, 0, 3, 0, 0),
(77820, 77820, 0, 0, 3, 0, 0),
(77820, 77854, 0, 0, 3, 0, 0),
(77820, 83955, 0, 0, 3, 0, 0),
(77820, 83956, 0, 0, 3, 0, 0),
(77820, 83958, 0, 0, 3, 0, 0);