aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-08-12 01:32:49 +0100
committerJustin Clark-Casey (justincc)2011-08-12 01:32:49 +0100
commitaebd46a4348cf55d25eaa56325940a0f33d8b8fe (patch)
treec5e018e3849fc72a245d5491563cc5c04a32abe4
parentWhen saving appearance, only save the baked textures, not the other face text... (diff)
downloadopensim-SC_OLD-aebd46a4348cf55d25eaa56325940a0f33d8b8fe.zip
opensim-SC_OLD-aebd46a4348cf55d25eaa56325940a0f33d8b8fe.tar.gz
opensim-SC_OLD-aebd46a4348cf55d25eaa56325940a0f33d8b8fe.tar.bz2
opensim-SC_OLD-aebd46a4348cf55d25eaa56325940a0f33d8b8fe.tar.xz
rename osNpcStopMoveTo() to osNpcStopMoveToTarget()
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs2
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs2
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
index 90c4636..07473e5 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
@@ -2322,7 +2322,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
2322 } 2322 }
2323 } 2323 }
2324 2324
2325 public void osNpcStopMoveTo(LSL_Key npc) 2325 public void osNpcStopMoveToTarget(LSL_Key npc)
2326 { 2326 {
2327 CheckThreatLevel(ThreatLevel.VeryLow, "osNpcStopMoveTo"); 2327 CheckThreatLevel(ThreatLevel.VeryLow, "osNpcStopMoveTo");
2328 2328
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 9f0d07c..2ba68ff 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -176,7 +176,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
176 void osNpcMoveToTarget(key npc, vector position, int options); 176 void osNpcMoveToTarget(key npc, vector position, int options);
177 rotation osNpcGetRot(key npc); 177 rotation osNpcGetRot(key npc);
178 void osNpcSetRot(LSL_Key npc, rotation rot); 178 void osNpcSetRot(LSL_Key npc, rotation rot);
179 void osNpcStopMoveTo(LSL_Key npc); 179 void osNpcStopMoveToTarget(LSL_Key npc);
180 void osNpcSay(key npc, string message); 180 void osNpcSay(key npc, string message);
181 void osNpcRemove(key npc); 181 void osNpcRemove(key npc);
182 182
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 3ccb3f1..140501c 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -518,9 +518,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
518 m_OSSL_Functions.osNpcSetRot(npc, rot); 518 m_OSSL_Functions.osNpcSetRot(npc, rot);
519 } 519 }
520 520
521 public void osNpcStopMoveTo(LSL_Key npc) 521 public void osNpcStopMoveToTarget(LSL_Key npc)
522 { 522 {
523 m_OSSL_Functions.osNpcStopMoveTo(npc); 523 m_OSSL_Functions.osNpcStopMoveToTarget(npc);
524 } 524 }
525 525
526 public void osNpcSay(key npc, string message) 526 public void osNpcSay(key npc, string message)