Skip to content

Commit

Permalink
fix wrong pointid in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ZxBiohazardZx committed Mar 23, 2013
1 parent 106f6f8 commit e3924a5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions sql/updates/world/2013_03_23_04_world_waypoint_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -281,18 +281,18 @@ INSERT INTO `creature_addon` (`guid`,`path_id`) VALUES (@CGUID+24,@WPID);
DELETE FROM `waypoint_data` WHERE `id`=@WPID;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
(@WPID,0,1682.383301,-3116.470459,89.554993,0,0,0,0,100,0),
(@WPID,0,1674.620605,-3109.400146,88.976250,0,0,0,0,100,0),
(@WPID,0,1658.956787,-3095.415039,89.265846,0,0,0,0,100,0),
(@WPID,0,1653.566772,-3084.082275,88.686615,0,0,0,0,100,0),
(@WPID,0,1646.295532,-3068.169434,88.805115,0,0,0,0,100,0),
(@WPID,0,1636.780884,-3059.662109,88.973808,0,0,0,0,100,0),
(@WPID,0,1624.316528,-3060.500488,89.142319,0,0,0,0,100,0),
(@WPID,0,1617.466064,-3070.297119,89.184601,0,0,0,0,100,0),
(@WPID,0,1617.102051,-3082.547607,89.317902,0,0,0,0,100,0),
(@WPID,0,1627.488770,-3091.394531,88.658096,0,0,0,0,100,0),
(@WPID,0,1637.340332,-3094.989258,88.381920,0,0,0,0,100,0),
(@WPID,0,1650.978027,-3098.081299,88.389397,0,0,0,0,100,0),
(@WPID,0,1665.720093,-3104.706787,88.814766,0,0,0,0,100,0);
(@WPID,1,1674.620605,-3109.400146,88.976250,0,0,0,0,100,0),
(@WPID,2,1658.956787,-3095.415039,89.265846,0,0,0,0,100,0),
(@WPID,3,1653.566772,-3084.082275,88.686615,0,0,0,0,100,0),
(@WPID,4,1646.295532,-3068.169434,88.805115,0,0,0,0,100,0),
(@WPID,5,1636.780884,-3059.662109,88.973808,0,0,0,0,100,0),
(@WPID,6,1624.316528,-3060.500488,89.142319,0,0,0,0,100,0),
(@WPID,7,1617.466064,-3070.297119,89.184601,0,0,0,0,100,0),
(@WPID,8,1617.102051,-3082.547607,89.317902,0,0,0,0,100,0),
(@WPID,9,1627.488770,-3091.394531,88.658096,0,0,0,0,100,0),
(@WPID,10,1637.340332,-3094.989258,88.381920,0,0,0,0,100,0),
(@WPID,11,1650.978027,-3098.081299,88.389397,0,0,0,0,100,0),
(@WPID,12,1665.720093,-3104.706787,88.814766,0,0,0,0,100,0);
-- pathing for Felguard CGUID+25 on
SET @WPID := (@CGUID+25)*10;
UPDATE `creature` SET `MovementType`=2,`position_x`=1606.020386,`position_y`=-2979.190918,`position_z`=182.066589,`currentwaypoint`=0 WHERE `guid` = @CGUID+25;
Expand Down

0 comments on commit e3924a5

Please sign in to comment.