mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 19:36:07 +08:00
Completing the item sale series, this one implements sell contents.
All item sale modes are now complete.
This commit is contained in:
@@ -743,5 +743,15 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public List<LLUUID> GetInventoryList()
|
||||
{
|
||||
List<LLUUID> ret = new List<LLUUID>();
|
||||
|
||||
foreach (TaskInventoryItem item in m_taskInventory.Values)
|
||||
ret.Add(item.ItemID);
|
||||
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user