* Establish a common InventoryNodeBase class from InventoryItemBase and InventoryFolderBase

This commit is contained in:
Justin Clarke Casey
2009-02-11 19:29:59 +00:00
parent 162a59ba17
commit e12981ef1b
4 changed files with 81 additions and 66 deletions

View File

@@ -114,6 +114,17 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
{
new InventoryArchiveReadRequest(firstName, lastName, invPath, loadPath, m_commsManager).Execute();
}
/*
foreach (Scene scene in m_scenes.Values)
{
ScenePresence user = scene.GetScenePresence(new UUID(im.toAgentID));
if (user != null && !user.IsChildAgent)
{
user.ControllingClient.SendBulkUpdateInventory(folderCopy);
}
}
*/
}
public void ArchiveInventory(string firstName, string lastName, string invPath, string savePath)