diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/INPCModule.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs index 06296c9..08b973d 100644 --- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs +++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs | |||
@@ -71,8 +71,11 @@ namespace OpenSim.Region.Framework.Interfaces | |||
71 | /// If true, then the avatar will attempt to walk to the location even if it's up in the air. | 71 | /// If true, then the avatar will attempt to walk to the location even if it's up in the air. |
72 | /// This is to allow walking on prims. | 72 | /// This is to allow walking on prims. |
73 | /// </param> | 73 | /// </param> |
74 | /// <param name="landAtTarget"> | ||
75 | /// If true and the avatar is flying when it reaches the target, land. | ||
76 | /// </param> | ||
74 | /// <returns>True if the operation succeeded, false if there was no such agent or the agent was not an NPC</returns> | 77 | /// <returns>True if the operation succeeded, false if there was no such agent or the agent was not an NPC</returns> |
75 | bool MoveToTarget(UUID agentID, Scene scene, Vector3 pos, bool noFly); | 78 | bool MoveToTarget(UUID agentID, Scene scene, Vector3 pos, bool noFly, bool landAtTarget); |
76 | 79 | ||
77 | /// <summary> | 80 | /// <summary> |
78 | /// Stop the NPC's current movement. | 81 | /// Stop the NPC's current movement. |