diff options
author | Charles Krinke | 2008-07-13 18:57:13 +0000 |
---|---|---|
committer | Charles Krinke | 2008-07-13 18:57:13 +0000 |
commit | d0fb5e8c902d5a4e2888fde313c9394617cac6dc (patch) | |
tree | cd4ef89756d8d540fa77c98c82fd7342e26644c1 /OpenSim/Region/ClientStack | |
parent | * minor: make scene closing log message info rather than warn (diff) | |
download | opensim-SC_OLD-d0fb5e8c902d5a4e2888fde313c9394617cac6dc.zip opensim-SC_OLD-d0fb5e8c902d5a4e2888fde313c9394617cac6dc.tar.gz opensim-SC_OLD-d0fb5e8c902d5a4e2888fde313c9394617cac6dc.tar.bz2 opensim-SC_OLD-d0fb5e8c902d5a4e2888fde313c9394617cac6dc.tar.xz |
Mantis#1638. Thank you kindly, Salahzar for a patch that:
Addresses an unused field in the asset server but never get filled up.
It also makes working the recent items tab in inventory :))))
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
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: |