aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKittnz <frederik156@hotmail.com>2015-10-28 20:18:06 +0100
committerKittnz <frederik156@hotmail.com>2015-10-28 20:18:06 +0100
commitfa1cad2020e5c2d54fe06ec9cd90d8e6a44daa5b (patch)
treebe81e53ea0ce7d59a834cc4fea4feaf55732b861
parentf36d76e953b8c1d00d58daee764f192339dc5be0 (diff)
DB/Event: Fix for Dalaran & Shattrath Hallow's End spawns
-rw-r--r--sql/updates/world/2015_10_28_00_world.sql29
1 files changed, 29 insertions, 0 deletions
diff --git a/sql/updates/world/2015_10_28_00_world.sql b/sql/updates/world/2015_10_28_00_world.sql
new file mode 100644
index 00000000000..d414c3b7fc6
--- /dev/null
+++ b/sql/updates/world/2015_10_28_00_world.sql
@@ -0,0 +1,29 @@
+-- Fix for DB/Event: Add missing Hallow's End event spawns in Dalaran
+SET @OGUID:=77307;
+DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+9 AND `eventEntry`=12;
+INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
+(12, @OGUID+0),
+(12, @OGUID+1),
+(12, @OGUID+2),
+(12, @OGUID+3),
+(12, @OGUID+4),
+(12, @OGUID+5),
+(12, @OGUID+6),
+(12, @OGUID+7),
+(12, @OGUID+8),
+(12, @OGUID+9);
+
+-- Fix for DB/Event: Add missing Hallow's End event spawns in Shattrath
+SET @OGUID:=77697;
+DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+9 AND `eventEntry`=12;
+INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
+(12, @OGUID+0),
+(12, @OGUID+1),
+(12, @OGUID+2),
+(12, @OGUID+3),
+(12, @OGUID+4),
+(12, @OGUID+5),
+(12, @OGUID+6),
+(12, @OGUID+7),
+(12, @OGUID+8),
+(12, @OGUID+9);