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