aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.Inventory.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index e032a07..ded001b 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -528,6 +528,9 @@ namespace OpenSim.Region.Framework.Scenes
528 m_log.Error("[AGENT INVENTORY]: Failed to find item " + oldItemID.ToString()); 528 m_log.Error("[AGENT INVENTORY]: Failed to find item " + oldItemID.ToString());
529 return; 529 return;
530 } 530 }
531
532 if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0)
533 return;
531 } 534 }
532 535
533 AssetBase asset = AssetService.Get(item.AssetID.ToString()); 536 AssetBase asset = AssetService.Get(item.AssetID.ToString());