diff options
author | Killyana <morphone1@gmail.com> | 2016-04-09 19:30:14 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2016-04-09 19:30:14 +0200 |
commit | 7f7bb806fa014dd7da7af4750ff5d1c8ef679e62 (patch) | |
tree | 8e3915c7f536b6809777ba9c799b51312a1cb432 | |
parent | ee4da291b9823a3e8f57548a807a53ca642492d1 (diff) |
DB/Event: Additional Feast of Winter Veil gameobject & creature fixes
Cherry picks
-rw-r--r-- | sql/updates/world/2016_04_09_34_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
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; |