aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
diff options
context:
space:
mode:
authorUbitUmarov2019-02-21 23:11:03 +0000
committerUbitUmarov2019-02-21 23:11:03 +0000
commitbd27573130d4a40d678c81c687591708ab4e4f34 (patch)
treef757635e4dbffa158de3e8782d0676f319353e15 /OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
parentlet changed allowed drop have lldetectedkey[0] return the dropped item id, Ye... (diff)
downloadopensim-SC-bd27573130d4a40d678c81c687591708ab4e4f34.zip
opensim-SC-bd27573130d4a40d678c81c687591708ab4e4f34.tar.gz
opensim-SC-bd27573130d4a40d678c81c687591708ab4e4f34.tar.bz2
opensim-SC-bd27573130d4a40d678c81c687591708ab4e4f34.tar.xz
add LSL_String osGetInventoryName(LSL_Key itemId) and LSL_String osGetInventoryDescription(LSL_String itemNameOrId)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 7277577..711108b 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -547,6 +547,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
547 LSL_Integer osApproxEquals(vector va, vector vb, LSL_Float margin); 547 LSL_Integer osApproxEquals(vector va, vector vb, LSL_Float margin);
548 LSL_Integer osApproxEquals(rotation ra, rotation rb); 548 LSL_Integer osApproxEquals(rotation ra, rotation rb);
549 LSL_Integer osApproxEquals(rotation ra, rotation rb, LSL_Float margin); 549 LSL_Integer osApproxEquals(rotation ra, rotation rb, LSL_Float margin);
550 LSL_Key osGetInventoryLastOwner(string itemNameOrId); 550 LSL_Key osGetInventoryLastOwner(LSL_String itemNameOrId);
551 LSL_String osGetInventoryName(LSL_Key itemId);
552 LSL_String osGetInventoryDescription(LSL_String itemNameOrId);
551 } 553 }
552} 554}