Fixes mantis #4870.
parent
f13f35755c
commit
3ca3522ad1
|
@ -182,7 +182,13 @@ namespace OpenSim.Region.CoreModules.Agent.AssetTransaction
|
||||||
|
|
||||||
if (part.Inventory.UpdateInventoryItem(item))
|
if (part.Inventory.UpdateInventoryItem(item))
|
||||||
{
|
{
|
||||||
remoteClient.SendAgentAlertMessage("Notecard saved", false);
|
if ((InventoryType)item.InvType == InventoryType.Notecard)
|
||||||
|
remoteClient.SendAgentAlertMessage("Notecard saved", false);
|
||||||
|
else if ((InventoryType)item.InvType == InventoryType.LSL)
|
||||||
|
remoteClient.SendAgentAlertMessage("Script saved", false);
|
||||||
|
else
|
||||||
|
remoteClient.SendAgentAlertMessage("Item saved", false);
|
||||||
|
|
||||||
part.GetProperties(remoteClient);
|
part.GetProperties(remoteClient);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1342,7 +1342,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
if (part.Inventory.UpdateInventoryItem(itemInfo))
|
if (part.Inventory.UpdateInventoryItem(itemInfo))
|
||||||
{
|
{
|
||||||
remoteClient.SendAgentAlertMessage("Notecard saved", false);
|
if ((InventoryType)itemInfo.InvType == InventoryType.Notecard)
|
||||||
|
remoteClient.SendAgentAlertMessage("Notecard saved", false);
|
||||||
|
else if ((InventoryType)itemInfo.InvType == InventoryType.LSL)
|
||||||
|
remoteClient.SendAgentAlertMessage("Script saved", false);
|
||||||
|
else
|
||||||
|
remoteClient.SendAgentAlertMessage("Item saved", false);
|
||||||
|
|
||||||
part.GetProperties(remoteClient);
|
part.GetProperties(remoteClient);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue