fix(DB/BlackwingLair): Trash Formation (#11807)

* Fix(DB/BWL): Trash Formation

* Update rev_1652952979464233480

* add .sql extension

* missing semicolon

Co-authored-by: Nefertumm <nefertum.dev@protonmail.com>
This commit is contained in:
temperrr
2022-05-23 11:05:19 +02:00
committed by GitHub
parent b638d44693
commit 1f59431d03

View File

@@ -0,0 +1,11 @@
SET @LEADERGUID := 84542;
DELETE FROM `creature_formations` WHERE `memberGUID` IN (@LEADERGUID, 84190, 84194, 84192, 84541, 84543, 84186, 84188);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
(@LEADERGUID, @LEADERGUID, 0, 0, 3),
(@LEADERGUID, 84190, 0, 0, 3),
(@LEADERGUID, 84194, 0, 0, 3),
(@LEADERGUID, 84192, 0, 0, 3),
(@LEADERGUID, 84541, 0, 0, 3),
(@LEADERGUID, 84543, 0, 0, 3),
(@LEADERGUID, 84188, 0, 0, 3),
(@LEADERGUID, 84186, 0, 0, 3);