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.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index e972382..c77efc7 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -1362,7 +1362,13 @@ namespace OpenSim.Region.Framework.Scenes
1362 } 1362 }
1363 if (part.Inventory.UpdateInventoryItem(itemInfo)) 1363 if (part.Inventory.UpdateInventoryItem(itemInfo))
1364 { 1364 {
1365 // remoteClient.SendAgentAlertMessage("Notecard saved", false); 1365 if ((InventoryType)itemInfo.InvType == InventoryType.Notecard)
1366 remoteClient.SendAgentAlertMessage("Notecard saved", false);
1367 else if ((InventoryType)itemInfo.InvType == InventoryType.LSL)
1368 remoteClient.SendAgentAlertMessage("Script saved", false);
1369 else
1370 remoteClient.SendAgentAlertMessage("Item saved", false);
1371
1366 part.GetProperties(remoteClient); 1372 part.GetProperties(remoteClient);
1367 } 1373 }
1368 } 1374 }