fix(DB/Creature): Captain Greenskin formation (#3086)

This commit is contained in:
Steven 2020-07-16 19:03:49 -04:00 committed by GitHub
parent a2a4416bf3
commit 15cd782197
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1590721141473009089');
/*delete any entries in creature_formations to make sure no errors*/
DELETE FROM `creature_formations` WHERE `leaderGUID` = 79333;
/*add captain greenskin as leader of the formation and give him followers.*/
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`) VALUES
(79333,79333,0,0,0),
(79333,79334,2,135,0),
(79333,79335,2,225,0);