Start of inventory items, when you upload a texture the data will now be stored in the inventory database and you will still have that texture in inventory on later logins (Again only in standalone mode with authentication.)

Also there might be some problems if you upload textures in other regions to the start one (due to us not updating the CAPS url properly).
This commit is contained in:
MW
2007-08-14 17:29:15 +00:00
parent 09e1f5f22e
commit 181a90967e
11 changed files with 203 additions and 41 deletions

View File

@@ -116,6 +116,14 @@ namespace OpenSim.Framework.InventoryServiceBase
}
}
public void AddItem(InventoryItemBase item)
{
foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins)
{
plugin.Value.addInventoryItem(item);
}
}
/// <summary>
///
/// </summary>