parameter bool run replaced by forcedMovement:
enum ForcedMovement
{
FORCED_MOVEMENT_NONE = 0,
FORCED_MOVEMENT_WALK = 1,
FORCED_MOVEMENT_RUN = 2,
FORCED_MOVEMENT_MAX
};
also parameter ordering is wrong for action 113 before that pr:
struct
{
uint32 pathId1;
uint32 pathId2;
uint32 repeat;
uint32 run;
} startClosestWaypoint;
new structure is
struct
{
uint32 pathId1;
uint32 pathId2;
uint32 repeat;
uint32 forcedMovement;
} startClosestWaypoint;
parameter
bool runreplaced byforcedMovement:also parameter ordering is wrong for action 113 before that pr:
struct { uint32 pathId1; uint32 pathId2; uint32 repeat; uint32 run; } startClosestWaypoint;new structure is
struct { uint32 pathId1; uint32 pathId2; uint32 repeat; uint32 forcedMovement; } startClosestWaypoint;