diff options
author | Subv2112 <s.v.h21@hotmail.com> | 2012-02-04 20:01:27 -0500 |
---|---|---|
committer | Subv2112 <s.v.h21@hotmail.com> | 2012-02-04 20:01:27 -0500 |
commit | d43bf0ad4ac63c0893bc8dd42207d7a6f36db94b (patch) | |
tree | 256088c4f6e2756f45453784240025d0cecd5596 | |
parent | 6896f82062096f532f098dc46da434f3a9e42100 (diff) |
SQL: Correctly fixed recent sql
-rw-r--r-- | sql/updates/world/2012_02_04_00_world_creature.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2012_02_04_00_world_creature.sql b/sql/updates/world/2012_02_04_00_world_creature.sql index a9b77bf6098..ffc5dfe773b 100644 --- a/sql/updates/world/2012_02_04_00_world_creature.sql +++ b/sql/updates/world/2012_02_04_00_world_creature.sql @@ -1,5 +1,5 @@ -- Adds missing spirit healer in Desolace SET @GUID := 40269; -DELETE FROM `creature` WHERE `guid`=@GUID AND `entry`=6491; +DELETE FROM `creature` WHERE `guid`=@GUID AND `id`=6491; INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (@GUID, 6491, 1, 1, 1, 0, 0, -452.182, 2513.69, 92.8852, 6.1809, 300, 0, 0, 4120, 0, 0, 0, 0, 0); |