diff options
| author | Smokexyz <sagunxp@gmail.com> | 2016-10-15 16:37:52 +0530 |
|---|---|---|
| committer | blub <Vincent_Michael@gmx.de> | 2016-10-15 13:07:52 +0200 |
| commit | 4de5a6e00594262e248640c125f0a7dfc88351ba (patch) | |
| tree | 1ffe4bc3df3802e2c588afad86b1e25f7921ac08 | |
| parent | 115d2400e451e23589a49b2726e9a6906efc0293 (diff) | |
Fix for a typo in variable name. (#18086)
Causes an error on update.
| -rw-r--r-- | sql/updates/world/3.3.5/2016_10_11_05_world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_11_05_world.sql b/sql/updates/world/3.3.5/2016_10_11_05_world.sql index cb290a2dee0..0fbf2a9812e 100644 --- a/sql/updates/world/3.3.5/2016_10_11_05_world.sql +++ b/sql/updates/world/3.3.5/2016_10_11_05_world.sql @@ -1,6 +1,6 @@ -- SET @CGUID := 12571; -DELETE FROM `creature` WHERE `guid`=@GUID; +DELETE FROM `creature` WHERE `guid`=@CGUID; INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES (@CGUID, 24900, 571, 0, 0, 1, 1, 0, 0, 529.2123, -3530.377, 12.97082, 0, 60, 0, 0, 1, 0, 2, 0, 0, 0, 0); |
