Fixed a missing field in SendBulkInventoryFolderUpdate.

remotes/origin/0.6.7-post-fixes
Diva Canto 2009-08-20 16:18:32 -07:00
parent b23160a871
commit 118f710a79
1 changed files with 3 additions and 1 deletions

View File

@ -2177,7 +2177,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
bulkUpdate.AgentData.AgentID = AgentId;
bulkUpdate.AgentData.TransactionID = transactionId;
bulkUpdate.FolderData = folderDataBlocks.ToArray();
List<BulkUpdateInventoryPacket.ItemDataBlock> foo = new List<BulkUpdateInventoryPacket.ItemDataBlock>();
bulkUpdate.ItemData = foo.ToArray();
//m_log.Debug("SendBulkUpdateInventory :" + bulkUpdate);
OutPacket(bulkUpdate, ThrottleOutPacketType.Asset);
}