diff options
author | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-03-03 13:53:52 +0100 |
---|---|---|
committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-03-03 13:53:52 +0100 |
commit | 600e7e8cfb3f9e67de840dcc055e2754e4fead85 (patch) | |
tree | a84f62d5c822025fbec56de35d49ad6690dc93b8 | |
parent | 7a04d5ee8276a81156af9fb7ac13521441cb3f36 (diff) |
SQL: Fix typo
-rw-r--r-- | sql/updates/world/2013_03_03_01_world_misc.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2013_03_03_01_world_misc.sql b/sql/updates/world/2013_03_03_01_world_misc.sql index 4a25dd29326..a81da8352e3 100644 --- a/sql/updates/world/2013_03_03_01_world_misc.sql +++ b/sql/updates/world/2013_03_03_01_world_misc.sql @@ -1,7 +1,7 @@ -- Issue 9311 -- Add Missing Sunreaver Guardian Mage inside Sunreaver Tavern (Thx Aokromes) SET @CGUID := 40267; -- Set by TDB Team -DELETE FROM `creature` WHERE `guid` @CGUID; +DELETE FROM `creature` WHERE `guid`=@CGUID; INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`MovementType`) VALUES (@CGUID,29255,571,1,1,5900.299,505.75,641.6531,4.171337,120,0,0); |