Remove more LLUUID.Zero safe checks to allow downloading of Inventory where AssetID was not specified during inventory download.

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@874 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Michael Cortez
2007-01-23 00:13:07 +00:00
parent c1c9e80a1f
commit 8cb14ab687
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ namespace libsecondlife.InventorySystem
}
else
{
if ( (AssetID != null) && (AssetID != LLUUID.Zero) )
if ( (AssetID != null) )
{
AssetRequestDownload request = base.iManager.AssetManager.RequestInventoryAsset(this);
if (request.Wait(AssetManager.DefaultTimeout) != AssetRequestDownload.RequestStatus.Success)