aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index 09f77d1..0704378 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -641,7 +641,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
641 return m_LSL_Functions.llGetObjectDesc(); 641 return m_LSL_Functions.llGetObjectDesc();
642 } 642 }
643 643
644 public LSL_List llGetObjectDetails(string id, LSL_List args) 644 public LSL_List llGetObjectDetails(LSL_Key id, LSL_List args)
645 { 645 {
646 return m_LSL_Functions.llGetObjectDetails(id, args); 646 return m_LSL_Functions.llGetObjectDetails(id, args);
647 } 647 }
@@ -661,7 +661,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
661 return m_LSL_Functions.llGetObjectPermMask(mask); 661 return m_LSL_Functions.llGetObjectPermMask(mask);
662 } 662 }
663 663
664 public LSL_Integer llGetObjectPrimCount(string object_id) 664 public LSL_Integer llGetObjectPrimCount(LSL_Key object_id)
665 { 665 {
666 return m_LSL_Functions.llGetObjectPrimCount(object_id); 666 return m_LSL_Functions.llGetObjectPrimCount(object_id);
667 } 667 }
@@ -1871,7 +1871,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1871 return m_LSL_Functions.llStringToBase64(str); 1871 return m_LSL_Functions.llStringToBase64(str);
1872 } 1872 }
1873 1873
1874 public LSL_String llStringTrim(string src, int type) 1874 public LSL_String llStringTrim(LSL_String src, LSL_Integer type)
1875 { 1875 {
1876 return m_LSL_Functions.llStringTrim(src, type); 1876 return m_LSL_Functions.llStringTrim(src, type);
1877 } 1877 }