rename new osGetLinkInventoryItemKey as osGetLinkInventoryItemAssetKey

This commit is contained in:
UbitUmarov
2024-03-24 11:34:23 +00:00
parent 1aa7bea608
commit 7c63ff1150
4 changed files with 5 additions and 9 deletions

View File

@@ -1461,9 +1461,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Key osGetLinkInventoryAssetKey(LSL_Integer linkNumber, LSL_String name, LSL_Integer type)
public LSL_Key osGetLinkInventoryItemAssetKey(LSL_Integer linkNumber, LSL_String name, LSL_Integer type)
{
return m_OSSL_Functions.osGetLinkInventoryAssetKey(linkNumber, name, type);
return m_OSSL_Functions.osGetLinkInventoryItemAssetKey(linkNumber, name, type);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]