aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;