Bug fix on attachments: don't delete the item from inventory when it's dropped on the ground.

soprefactor
Diva Canto 2010-06-09 11:24:37 -07:00
parent 8fc5eda2c9
commit 18bfe58de8
1 changed files with 9 additions and 4 deletions

View File

@ -375,10 +375,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
}
part.ParentGroup.DetachToGround();
List<UUID> uuids = new List<UUID>();
uuids.Add(inventoryID);
m_scene.InventoryService.DeleteItems(remoteClient.AgentId, uuids);
remoteClient.SendRemoveInventoryItem(inventoryID);
// If the item is no-copy we need to delete it from inventory
InventoryItemBase item = m_scene.InventoryService.GetItem(new InventoryItemBase(itemID));
if (item != null && (item.CurrentPermissions & (uint)PermissionMask.Copy) == 0)
{
List<UUID> uuids = new List<UUID>();
uuids.Add(inventoryID);
m_scene.InventoryService.DeleteItems(remoteClient.AgentId, uuids);
remoteClient.SendRemoveInventoryItem(inventoryID);
}
}
m_scene.EventManager.TriggerOnAttach(part.ParentGroup.LocalId, itemID, UUID.Zero);