some small changes, like adding a couple of extra methods to IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.

This commit is contained in:
MW
2008-02-05 13:02:03 +00:00
parent 80b8630e19
commit 33c4631c6d
4 changed files with 36 additions and 0 deletions

View File

@@ -194,6 +194,16 @@ namespace OpenSim.Framework.Communications
}
}
public virtual bool HasInventoryForUser(LLUUID userID)
{
return false;
}
public InventoryFolderBase RequestRootFolder(LLUUID userID)
{
return RequestUsersRoot(userID);
}
/// <summary>
///
/// </summary>