mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
DB/Event: Fix for Dalaran & Shattrath Hallow's End spawns
This commit is contained in:
29
sql/updates/world/2015_10_28_00_world.sql
Normal file
29
sql/updates/world/2015_10_28_00_world.sql
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user