From 7f7bb806fa014dd7da7af4750ff5d1c8ef679e62 Mon Sep 17 00:00:00 2001 From: Killyana Date: Sat, 9 Apr 2016 19:30:14 +0200 Subject: DB/Event: Additional Feast of Winter Veil gameobject & creature fixes Cherry picks --- sql/updates/world/2016_04_09_34_world.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sql/updates/world/2016_04_09_34_world.sql (limited to 'sql') diff --git a/sql/updates/world/2016_04_09_34_world.sql b/sql/updates/world/2016_04_09_34_world.sql new file mode 100644 index 00000000000..f9bd6b67ab0 --- /dev/null +++ b/sql/updates/world/2016_04_09_34_world.sql @@ -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; -- cgit v1.2.3