diff options
author | Diva Canto | 2009-08-20 16:18:32 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-20 16:18:32 -0700 |
commit | 118f710a79c68da04861941a3304b1dba2c847bb (patch) | |
tree | fe8ecab5d88e7501ebd04b5db58ffcb762750700 /OpenSim | |
parent | Remove the AssetInventory server from core. It has fallen behind both (diff) | |
download | opensim-SC_OLD-118f710a79c68da04861941a3304b1dba2c847bb.zip opensim-SC_OLD-118f710a79c68da04861941a3304b1dba2c847bb.tar.gz opensim-SC_OLD-118f710a79c68da04861941a3304b1dba2c847bb.tar.bz2 opensim-SC_OLD-118f710a79c68da04861941a3304b1dba2c847bb.tar.xz |
Fixed a missing field in SendBulkInventoryFolderUpdate.
Diffstat (limited to 'OpenSim')
-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 6969a3d..a7a5aa3 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -2177,7 +2177,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2177 | bulkUpdate.AgentData.AgentID = AgentId; | 2177 | bulkUpdate.AgentData.AgentID = AgentId; |
2178 | bulkUpdate.AgentData.TransactionID = transactionId; | 2178 | bulkUpdate.AgentData.TransactionID = transactionId; |
2179 | bulkUpdate.FolderData = folderDataBlocks.ToArray(); | 2179 | bulkUpdate.FolderData = folderDataBlocks.ToArray(); |
2180 | 2180 | List<BulkUpdateInventoryPacket.ItemDataBlock> foo = new List<BulkUpdateInventoryPacket.ItemDataBlock>(); | |
2181 | bulkUpdate.ItemData = foo.ToArray(); | ||
2182 | |||
2181 | //m_log.Debug("SendBulkUpdateInventory :" + bulkUpdate); | 2183 | //m_log.Debug("SendBulkUpdateInventory :" + bulkUpdate); |
2182 | OutPacket(bulkUpdate, ThrottleOutPacketType.Asset); | 2184 | OutPacket(bulkUpdate, ThrottleOutPacketType.Asset); |
2183 | } | 2185 | } |