aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index fa3d9e1..e8a54bf 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -1762,6 +1762,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1762 InventoryReply.InventoryData[0].Flags = Item.Flags; 1762 InventoryReply.InventoryData[0].Flags = Item.Flags;
1763 InventoryReply.InventoryData[0].SalePrice = Item.SalePrice; 1763 InventoryReply.InventoryData[0].SalePrice = Item.SalePrice;
1764 InventoryReply.InventoryData[0].SaleType = Item.SaleType; 1764 InventoryReply.InventoryData[0].SaleType = Item.SaleType;
1765 InventoryReply.InventoryData[0].CreationDate = Item.CreationDate;
1765 1766
1766 InventoryReply.InventoryData[0].CRC = 1767 InventoryReply.InventoryData[0].CRC =
1767 Helpers.InventoryCRC(1000, 0, InventoryReply.InventoryData[0].InvType, 1768 Helpers.InventoryCRC(1000, 0, InventoryReply.InventoryData[0].InvType,
@@ -5288,7 +5289,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5288 createItem.InventoryBlock.InvType, 5289 createItem.InventoryBlock.InvType,
5289 createItem.InventoryBlock.Type, 5290 createItem.InventoryBlock.Type,
5290 createItem.InventoryBlock.WearableType, 5291 createItem.InventoryBlock.WearableType,
5291 createItem.InventoryBlock.NextOwnerMask); 5292 createItem.InventoryBlock.NextOwnerMask,
5293 Util.UnixTimeSinceEpoch());
5292 } 5294 }
5293 break; 5295 break;
5294 case PacketType.FetchInventory: 5296 case PacketType.FetchInventory: