add OS_NPC_RUNNING option to osNpcMoveToTarget() to allow running speed for moving NPCs

This commit is contained in:
dahlia
2012-05-06 23:54:50 -07:00
parent b60f51dafc
commit b697d0e895
4 changed files with 9 additions and 4 deletions

View File

@@ -2474,7 +2474,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
World,
pos,
(options & ScriptBaseClass.OS_NPC_NO_FLY) != 0,
(options & ScriptBaseClass.OS_NPC_LAND_AT_TARGET) != 0);
(options & ScriptBaseClass.OS_NPC_LAND_AT_TARGET) != 0,
(options & ScriptBaseClass.OS_NPC_RUNNING) != 0);
}
}