mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/Event: Additional Feast of Winter Veil gameobject & creature fixes
Cherry picks
This commit is contained in:
11
sql/updates/world/2016_04_09_34_world.sql
Normal file
11
sql/updates/world/2016_04_09_34_world.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
--
|
||||
SET @OGUID:=79521;
|
||||
SET @CGUID:=52265;
|
||||
SET @Event:=2;
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `guid` IN (@OGUID+0);
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@Event, @OGUID+0);
|
||||
|
||||
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+4 AND `eventEntry`=@Event;
|
||||
INSERT INTO game_event_creature SELECT @Event, creature.guid FROM `creature` WHERE creature.guid BETWEEN @CGUID+0 AND @CGUID+4;
|
||||
Reference in New Issue
Block a user