DB/Event: Additional Feast of Winter Veil gameobject & creature fixes

Cherry picks
This commit is contained in:
Killyana
2016-04-09 19:30:14 +02:00
parent ee4da291b9
commit 7f7bb806fa

View 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;