aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/updates/world/2016_04_09_34_world.sql11
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;