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.cs15
1 files changed, 12 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index 66fb918..09d02f4 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -1722,10 +1722,19 @@ namespace OpenSim.Region.Framework.Scenes
1722 1722
1723 if (folderID == UUID.Zero && folder == null) 1723 if (folderID == UUID.Zero && folder == null)
1724 { 1724 {
1725 // Catch all. Use lost & found 1725 if (action == DeRezAction.Delete)
1726 // 1726 {
1727 // Deletes go to trash by default
1728 //
1729 folder = InventoryService.GetFolderForType(userID, AssetType.TrashFolder);
1730 }
1731 else
1732 {
1733 // Catch all. Use lost & found
1734 //
1727 1735
1728 folder = InventoryService.GetFolderForType(userID, AssetType.LostAndFoundFolder); 1736 folder = InventoryService.GetFolderForType(userID, AssetType.LostAndFoundFolder);
1737 }
1729 } 1738 }
1730 1739
1731 if (folder == null) // None of the above 1740 if (folder == null) // None of the above