diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/InventoryServiceBase.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs index de76415..8068080 100644 --- a/OpenSim/Framework/Communications/InventoryServiceBase.cs +++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs | |||
@@ -321,6 +321,16 @@ namespace OpenSim.Framework.Communications | |||
321 | } | 321 | } |
322 | } | 322 | } |
323 | 323 | ||
324 | public InventoryItemBase GetInventoryItem(UUID itemID) | ||
325 | { | ||
326 | foreach (IInventoryDataPlugin plugin in m_plugins) | ||
327 | { | ||
328 | return plugin.getInventoryItem(itemID); | ||
329 | } | ||
330 | |||
331 | return null; | ||
332 | } | ||
333 | |||
324 | /// <summary> | 334 | /// <summary> |
325 | /// Used to create a new user inventory. | 335 | /// Used to create a new user inventory. |
326 | /// </summary> | 336 | /// </summary> |