diff options
-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; |