Fix coalesced objects not showing up as "piles" of prims (AVN only bug)
parent
b4a3ed1863
commit
5000a5c038
|
@ -1794,7 +1794,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
newBlock.CreationDate = item.CreationDate;
|
||||
newBlock.SalePrice = item.SalePrice;
|
||||
newBlock.SaleType = item.SaleType;
|
||||
newBlock.Flags = item.Flags & 0xff;
|
||||
newBlock.Flags = item.Flags & 0x2000ff;
|
||||
|
||||
newBlock.CRC =
|
||||
Helpers.InventoryCRC(newBlock.CreationDate, newBlock.SaleType,
|
||||
|
@ -2048,7 +2048,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
itemBlock.GroupID = item.GroupID;
|
||||
itemBlock.GroupOwned = item.GroupOwned;
|
||||
itemBlock.GroupMask = item.GroupPermissions;
|
||||
itemBlock.Flags = item.Flags & 0xff;
|
||||
itemBlock.Flags = item.Flags & 0x2000ff;
|
||||
itemBlock.SalePrice = item.SalePrice;
|
||||
itemBlock.SaleType = item.SaleType;
|
||||
itemBlock.CreationDate = item.CreationDate;
|
||||
|
@ -2115,7 +2115,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
bulkUpdate.ItemData[0].GroupID = item.GroupID;
|
||||
bulkUpdate.ItemData[0].GroupOwned = item.GroupOwned;
|
||||
bulkUpdate.ItemData[0].GroupMask = item.GroupPermissions;
|
||||
bulkUpdate.ItemData[0].Flags = item.Flags & 0xff;
|
||||
bulkUpdate.ItemData[0].Flags = item.Flags & 0x2000ff;
|
||||
bulkUpdate.ItemData[0].SalePrice = item.SalePrice;
|
||||
bulkUpdate.ItemData[0].SaleType = item.SaleType;
|
||||
|
||||
|
@ -2169,7 +2169,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
InventoryReply.InventoryData[0].GroupID = Item.GroupID;
|
||||
InventoryReply.InventoryData[0].GroupOwned = Item.GroupOwned;
|
||||
InventoryReply.InventoryData[0].GroupMask = Item.GroupPermissions;
|
||||
InventoryReply.InventoryData[0].Flags = Item.Flags & 0xff;
|
||||
InventoryReply.InventoryData[0].Flags = Item.Flags & 0x2000ff;
|
||||
InventoryReply.InventoryData[0].SalePrice = Item.SalePrice;
|
||||
InventoryReply.InventoryData[0].SaleType = Item.SaleType;
|
||||
InventoryReply.InventoryData[0].CreationDate = Item.CreationDate;
|
||||
|
|
Loading…
Reference in New Issue