aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
diff options
context:
space:
mode:
authorUbitUmarov2017-04-04 19:27:45 +0100
committerUbitUmarov2017-04-04 19:27:45 +0100
commite237e1b2fa444b0bf0077036c9436f919e344e2b (patch)
treeb67615c35fe7185a1e02130f0bd1ca24045dcbda /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
parent mantis 8740: rename osObjectTeleport as osTeleportObject, replaced the stop ... (diff)
downloadopensim-SC-e237e1b2fa444b0bf0077036c9436f919e344e2b.zip
opensim-SC-e237e1b2fa444b0bf0077036c9436f919e344e2b.tar.gz
opensim-SC-e237e1b2fa444b0bf0077036c9436f919e344e2b.tar.bz2
opensim-SC-e237e1b2fa444b0bf0077036c9436f919e344e2b.tar.xz
add LSL_Integer osGetLinkNumber(LSL_String name). uses a cache for the string to linknumber map, cache invalidations may still be missing :(
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 3c8e02d..7c08628 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -1144,5 +1144,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1144 { 1144 {
1145 m_OSSL_Functions.osTeleportObject(objectUUID, targetPos, targetrotation, flags); 1145 m_OSSL_Functions.osTeleportObject(objectUUID, targetPos, targetrotation, flags);
1146 } 1146 }
1147
1148 public LSL_Integer osGetLinkNumber(LSL_String name)
1149 {
1150 return m_OSSL_Functions.osGetLinkNumber(name);
1151 }
1147 } 1152 }
1148} 1153}