diff --git a/libsecondlife-cs/InventorySystem/InventoryImage.cs b/libsecondlife-cs/InventorySystem/InventoryImage.cs index 874174b3..c0e85574 100644 --- a/libsecondlife-cs/InventorySystem/InventoryImage.cs +++ b/libsecondlife-cs/InventorySystem/InventoryImage.cs @@ -14,8 +14,8 @@ namespace libsecondlife.InventorySystem { get { - if( Asset != null ) - { + if (_Asset != null) + { return ((AssetImage)Asset).J2CData; } else diff --git a/libsecondlife-cs/InventorySystem/InventoryItem.cs b/libsecondlife-cs/InventorySystem/InventoryItem.cs index 671e5d57..795fcf2a 100644 --- a/libsecondlife-cs/InventorySystem/InventoryItem.cs +++ b/libsecondlife-cs/InventorySystem/InventoryItem.cs @@ -130,6 +130,7 @@ namespace libsecondlife.InventorySystem { if ((AssetID != null) && (AssetID != LLUUID.Zero)) { + Console.WriteLine("Using the base asset download"); AssetRequestDownload request = base.iManager.AssetManager.RequestInventoryAsset(this); if (request.Wait(AssetManager.DefaultTimeout) != AssetRequestDownload.RequestStatus.Success) { diff --git a/libsecondlife-cs/InventorySystem/InventoryNotecard.cs b/libsecondlife-cs/InventorySystem/InventoryNotecard.cs index a7e22d02..4804eaa0 100644 --- a/libsecondlife-cs/InventorySystem/InventoryNotecard.cs +++ b/libsecondlife-cs/InventorySystem/InventoryNotecard.cs @@ -14,7 +14,7 @@ namespace libsecondlife.InventorySystem { get { - if( Asset != null ) + if( _Asset != null ) { return ((AssetNotecard)Asset).Body; } else { diff --git a/libsecondlife-cs/InventorySystem/InventoryScript.cs b/libsecondlife-cs/InventorySystem/InventoryScript.cs index 5ad78cb5..82ac5367 100644 --- a/libsecondlife-cs/InventorySystem/InventoryScript.cs +++ b/libsecondlife-cs/InventorySystem/InventoryScript.cs @@ -11,7 +11,7 @@ namespace libsecondlife.InventorySystem { get { - if ( Asset != null ) + if (_Asset != null) { return ((AssetScript)Asset).Source; }