diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 89ce4ae..3044017 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -2052,6 +2052,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
2052 | group.Children.Count, remoteClient.AgentId, pos) | 2052 | group.Children.Count, remoteClient.AgentId, pos) |
2053 | && !attachment) | 2053 | && !attachment) |
2054 | { | 2054 | { |
2055 | // The client operates in no fail mode. It will | ||
2056 | // have already removed the item from the folder | ||
2057 | // if it's no copy. | ||
2058 | // Put it back if it's not an attachment | ||
2059 | // | ||
2060 | if (((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) && (!attachment)) | ||
2061 | remoteClient.SendBulkUpdateInventory(item); | ||
2055 | return null; | 2062 | return null; |
2056 | } | 2063 | } |
2057 | 2064 | ||