Attempt to fix mantis issue #82, taking prims into inventory and then rezzing them in another region.

This commit is contained in:
MW
2007-12-02 20:43:21 +00:00
parent 5ae8759de1
commit ac77c32453
5 changed files with 29 additions and 5 deletions

View File

@@ -72,6 +72,15 @@ namespace OpenSim.Framework.Communications.Cache
}
}
public void UpdateUserInventory(LLUUID userID)
{
CachedUserInfo userInfo = GetUserDetails(userID);
if (userInfo != null)
{
RequestInventoryForUser(userID, userInfo);
}
}
public CachedUserInfo GetUserDetails(LLUUID userID)
{
if (m_userProfiles.ContainsKey(userID))