From 01b84ef46b73510e6f5c24b1e0fba1967bfbc608 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 18 Nov 2018 22:39:08 +0000 Subject: some cleanup --- OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime') 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 return m_LSL_Functions.llGetObjectDesc(); } - public LSL_List llGetObjectDetails(string id, LSL_List args) + public LSL_List llGetObjectDetails(LSL_Key id, LSL_List args) { return m_LSL_Functions.llGetObjectDetails(id, args); } @@ -661,7 +661,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase return m_LSL_Functions.llGetObjectPermMask(mask); } - public LSL_Integer llGetObjectPrimCount(string object_id) + public LSL_Integer llGetObjectPrimCount(LSL_Key object_id) { return m_LSL_Functions.llGetObjectPrimCount(object_id); } @@ -1871,7 +1871,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase return m_LSL_Functions.llStringToBase64(str); } - public LSL_String llStringTrim(string src, int type) + public LSL_String llStringTrim(LSL_String src, LSL_Integer type) { return m_LSL_Functions.llStringTrim(src, type); } -- cgit v1.1