aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 0052dd3..a21f701 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -4036,6 +4036,14 @@ namespace OpenSim.Region.Environment.Scenes
4036 remoteClient.SendInventoryItemCreateUpdate(item); 4036 remoteClient.SendInventoryItemCreateUpdate(item);
4037 } 4037 }
4038 break; 4038 break;
4039
4040 case 3: // Sell contents
4041 List<LLUUID> invList = part.GetInventoryList();
4042
4043 if (invList.Count > 0)
4044 MoveTaskInventoryItems(remoteClient.AgentId, part.Name,
4045 part, invList);
4046 break;
4039 } 4047 }
4040 } 4048 }
4041 } 4049 }