From f770fc8a0e5bcc2b83559109c7f6957cfefaff45 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 5 Mar 2024 18:52:48 +0000 Subject: [PATCH] missing file --- .../Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index c04286d6e3..fc816eb9fc 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs @@ -1461,16 +1461,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase } [MethodImpl(MethodImplOptions.AggressiveInlining)] - public LSL_Key osGetLinkInventoryKey(LSL_Integer linkNumber, LSL_String name) + public LSL_Key osGetLinkInventoryItemKey(LSL_Integer linkNumber, LSL_String name) { - return m_OSSL_Functions.osGetLinkInventoryKey(linkNumber, name); - + return m_OSSL_Functions.osGetLinkInventoryItemKey(linkNumber, name); } [MethodImpl(MethodImplOptions.AggressiveInlining)] - public LSL_List osGetInventoryKeys(LSL_Integer type) + public LSL_List osGetInventoryItemKeys(LSL_Integer type) { - return m_OSSL_Functions.osGetInventoryKeys(type); + return m_OSSL_Functions.osGetInventoryItemKeys(type); } [MethodImpl(MethodImplOptions.AggressiveInlining)]