refactor: In llGetInventoryType() use existing GetInventoryItem()
parent
f2b0377c28
commit
9fac7fd932
|
@ -9656,18 +9656,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
|
|
||||||
lock (m_host.TaskInventory)
|
TaskInventoryItem item = m_host.Inventory.GetInventoryItem(name);
|
||||||
{
|
|
||||||
foreach (KeyValuePair<UUID, TaskInventoryItem> inv in m_host.TaskInventory)
|
|
||||||
{
|
|
||||||
if (inv.Value.Name == name)
|
|
||||||
{
|
|
||||||
return inv.Value.Type;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (item == null)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
return item.Type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llSetPayPrice(int price, LSL_List quick_pay_buttons)
|
public void llSetPayPrice(int price, LSL_List quick_pay_buttons)
|
||||||
|
|
Loading…
Reference in New Issue