diff options
author | Kittnz <frederik156@hotmail.com> | 2016-01-12 22:21:17 +0100 |
---|---|---|
committer | Kittnz <frederik156@hotmail.com> | 2016-01-12 22:21:17 +0100 |
commit | 60e3127714f81748c8f2bc1d9774a71ecca786f2 (patch) | |
tree | c1cdf9752c6bb9cfe5d4f09f1ef6348a15838e55 | |
parent | 8dd072722ab523b611fa65e8bd6b84653dd7cacb (diff) |
Quick little SQL update
-rw-r--r-- | sql/updates/world/2016_01_12_04_world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2016_01_12_04_world.sql b/sql/updates/world/2016_01_12_04_world.sql index b758a21da9f..7cee9220060 100644 --- a/sql/updates/world/2016_01_12_04_world.sql +++ b/sql/updates/world/2016_01_12_04_world.sql @@ -11,4 +11,4 @@ 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; +INSERT INTO `game_event_creature` SELECT @Event, creature.guid FROM `creature` WHERE creature.guid BETWEEN @CGUID+0 AND @CGUID+4; |