diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index de40abd..7564907 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -1630,14 +1630,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1630 | currentPacket.ItemData[itemsSent % MAX_ITEMS_PER_PACKET] = CreateItemDataBlock(items[itemsSent++]); | 1630 | currentPacket.ItemData[itemsSent % MAX_ITEMS_PER_PACKET] = CreateItemDataBlock(items[itemsSent++]); |
1631 | else | 1631 | else |
1632 | { | 1632 | { |
1633 | // m_log.DebugFormat( | ||
1634 | // "[LLCLIENTVIEW]: Sending inventory folder details packet to {0} for folder {1}", Name, folderID); | ||
1633 | OutPacket(currentPacket, ThrottleOutPacketType.Asset, false); | 1635 | OutPacket(currentPacket, ThrottleOutPacketType.Asset, false); |
1634 | currentPacket = null; | 1636 | currentPacket = null; |
1635 | } | 1637 | } |
1636 | |||
1637 | } | 1638 | } |
1638 | 1639 | ||
1639 | if (currentPacket != null) | 1640 | if (currentPacket != null) |
1641 | { | ||
1642 | // m_log.DebugFormat( | ||
1643 | // "[LLCLIENTVIEW]: Sending inventory folder details packet to {0} for folder {1}", Name, folderID); | ||
1640 | OutPacket(currentPacket, ThrottleOutPacketType.Asset, false); | 1644 | OutPacket(currentPacket, ThrottleOutPacketType.Asset, false); |
1645 | } | ||
1641 | } | 1646 | } |
1642 | 1647 | ||
1643 | private InventoryDescendentsPacket.FolderDataBlock CreateFolderDataBlock(InventoryFolderBase folder) | 1648 | private InventoryDescendentsPacket.FolderDataBlock CreateFolderDataBlock(InventoryFolderBase folder) |