* Add ability to defer item actions for AddItem() and DeleteItem(). This won't be useful until we let the client cache (again?)

This commit is contained in:
Justin Clarke Casey
2008-05-03 23:33:20 +00:00
parent 56827894e9
commit 27a7391d6b
3 changed files with 25 additions and 6 deletions

View File

@@ -486,6 +486,7 @@ namespace OpenSim.Region.Environment.Scenes
if (userInfo == null)
{
m_log.Error("[AGENT INVENTORY]: Failed to find user " + remoteClient.AgentId.ToString());
return;
}
@@ -509,12 +510,14 @@ namespace OpenSim.Region.Environment.Scenes
else
{
m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString());
return;
}
}
else
{
m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString() + ", no root folder");
return;
}
}