rename NPC.Autopilot to NPC.MoveToTarget internally. Add method doc to INPCModule

This commit is contained in:
Justin Clark-Casey (justincc)
2011-08-03 23:20:36 +01:00
parent 31cea17f8e
commit 61d49d4f63
4 changed files with 34 additions and 4 deletions

View File

@@ -2110,7 +2110,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (module != null)
{
Vector3 pos = new Vector3((float) position.x, (float) position.y, (float) position.z);
module.Autopilot(new UUID(npc.m_string), World, pos);
module.MoveToTarget(new UUID(npc.m_string), World, pos);
}
}