aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-03 23:33:20 +0000
committerJustin Clarke Casey2008-05-03 23:33:20 +0000
commit27a7391d6b3df7d5e3d688ae27fa3ff21dcf421f (patch)
tree84c1527d51ce2386290c87a762265886fc2aa827 /OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
parent* Refactor RemoveItem() (diff)
downloadopensim-SC_OLD-27a7391d6b3df7d5e3d688ae27fa3ff21dcf421f.zip
opensim-SC_OLD-27a7391d6b3df7d5e3d688ae27fa3ff21dcf421f.tar.gz
opensim-SC_OLD-27a7391d6b3df7d5e3d688ae27fa3ff21dcf421f.tar.bz2
opensim-SC_OLD-27a7391d6b3df7d5e3d688ae27fa3ff21dcf421f.tar.xz
* Add ability to defer item actions for AddItem() and DeleteItem(). This won't be useful until we let the client cache (again?)
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.Inventory.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 490457d..1c7e98e 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -486,6 +486,7 @@ namespace OpenSim.Region.Environment.Scenes
486 if (userInfo == null) 486 if (userInfo == null)
487 { 487 {
488 m_log.Error("[AGENT INVENTORY]: Failed to find user " + remoteClient.AgentId.ToString()); 488 m_log.Error("[AGENT INVENTORY]: Failed to find user " + remoteClient.AgentId.ToString());
489
489 return; 490 return;
490 } 491 }
491 492
@@ -509,12 +510,14 @@ namespace OpenSim.Region.Environment.Scenes
509 else 510 else
510 { 511 {
511 m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString()); 512 m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString());
513
512 return; 514 return;
513 } 515 }
514 } 516 }
515 else 517 else
516 { 518 {
517 m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString() + ", no root folder"); 519 m_log.Error("[AGENT INVENTORY]: Failed to find item " + itemID.ToString() + ", no root folder");
520
518 return; 521 return;
519 } 522 }
520 } 523 }