diff options
author | Killyana <morphone1@gmail.com> | 2017-11-03 15:39:56 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2017-11-03 15:39:56 +0100 |
commit | 85d6431a524d3f9c03f0c4fc262b2333729fc0d0 (patch) | |
tree | c07055bed7d1fc4abb212b4bdecbcd4911c6ff21 | |
parent | 5b12ef11a9a448f14a8f4aeb638827965092b458 (diff) |
DB/Creature: Fix Stormwind Royal Guard formation in Northshire and add the cosmetic mount
-rw-r--r-- | sql/updates/world/master/2017_11_03_03_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_11_03_03_world.sql b/sql/updates/world/master/2017_11_03_03_world.sql new file mode 100644 index 00000000000..bb0cb39222e --- /dev/null +++ b/sql/updates/world/master/2017_11_03_03_world.sql @@ -0,0 +1,13 @@ +UPDATE `creature_addon` SET `bytes2`=1, `mount`=29284 WHERE `guid` IN (280010); +DELETE FROM `creature_addon` WHERE `guid` IN (280023, 280024, 280025); +INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(280023,0,29284,0,1,0,""), +(280024,0,29284,0,1,0,""), +(280025,0,29284,0,1,0,""); + +DELETE FROM `creature_formations` WHERE `leaderGUID`=280010; +INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`,`point_1`,`point_2`) VALUES +(280010, 280010, 0, 0, 515, 0, 0), +(280010, 280023, 5, 90, 515, 0, 0), +(280010, 280024, 5, 360, 515, 0, 0), +(280010, 280025, 7, 45, 515, 0, 0); |