* (Untested) implementation of ObjectExtraParamsHandler
* Fixed several mono compiler warnings and one compiler error
* Converted to a non-deprecated method of fetching the local IP address

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2463 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-03-02 23:43:12 +00:00
parent abf0c15384
commit 18b5f70e53
12 changed files with 65 additions and 37 deletions

View File

@@ -160,7 +160,8 @@ namespace Simian.Extensions
FetchInventoryDescendentsPacket fetch = (FetchInventoryDescendentsPacket)packet;
bool sendFolders = fetch.InventoryData.FetchFolders;
bool sendItems = fetch.InventoryData.FetchItems;
InventorySortOrder order = (InventorySortOrder)fetch.InventoryData.SortOrder;
// TODO: Obey SortOrder
//InventorySortOrder order = (InventorySortOrder)fetch.InventoryData.SortOrder;
Dictionary<UUID, InventoryObject> agentInventory = GetAgentInventory(agent.Avatar.ID);