aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerpaa <Serpaa@users.noreply.github.com>2017-12-25 21:24:36 +0100
committerKillyana <morphone1@gmail.com>2017-12-25 21:24:36 +0100
commitf0614b57a59a8525a6634e1465a83ef8fa27839e (patch)
treed80d7b0b67fb1c1a691694065975441c68d3c402
parent64596561f22ae8d0ca5a78354d1242e7d56d74e3 (diff)
DB/Misc: Shadowfang Keep
Closes #21114
-rw-r--r--sql/updates/world/3.3.5/2017_12_25_01_world_335.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_12_25_01_world_335.sql b/sql/updates/world/3.3.5/2017_12_25_01_world_335.sql
new file mode 100644
index 00000000000..629c5830be8
--- /dev/null
+++ b/sql/updates/world/3.3.5/2017_12_25_01_world_335.sql
@@ -0,0 +1,17 @@
+--
+-- Change weapons of Commander Springvale to the correct pre-cataclysm ones
+UPDATE `creature_equip_template` SET `ItemID1`=5191, `ItemID2`=1201 WHERE `CreatureID`=4278 AND `ID`=1;
+
+-- Update Lupine Horror and Slavering Worg MovementType to stand still
+UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (16240, 16238);
+
+-- Add chain aggro to Worgs infront of Wolf Master Nandos
+DELETE FROM `creature_formations` WHERE `leaderGUID`=16241;
+INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
+(16241, 16241, 0, 0, 3),
+(16241, 16240, 0, 0, 3),
+(16241, 16238, 0, 0, 3),
+(16241, 16239, 0, 0, 3);
+
+-- Add random movement to Razorclaw the Butcher
+UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `guid`=16253;