diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-07-01 14:08:25 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-07-01 14:08:25 -0400 | 
| commit | 5cda3ccad729f21dee0ea5517be4dcd8304943fe (patch) | |
| tree | c13d4e72dfdfe70a0da4c5adfa6d615adfeb3990 | |
| parent | 1c05b8cc3269531f781f1e97260868509b757327 (diff) | |
EXT-8194 FIX - added textures for default avatar wearables and attachments
| -rw-r--r-- | indra/newview/llappearancemgr.cpp | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 547dfd7006..d666347a22 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -1657,6 +1657,9 @@ void LLAppearanceMgr::updateAppearanceFromCOF()  	remove_non_link_items(obj_items);  	remove_non_link_items(gest_items); +	dumpItemArray(wear_items,"asset_dump: wear_item"); +	dumpItemArray(obj_items,"asset_dump: obj_item"); +  	if(!wear_items.count())  	{  		LLNotificationsUtil::add("CouldNotPutOnOutfit"); @@ -2574,11 +2577,16 @@ void LLAppearanceMgr::dumpCat(const LLUUID& cat_id, const std::string& msg)  void LLAppearanceMgr::dumpItemArray(const LLInventoryModel::item_array_t& items,  										const std::string& msg)  { -	llinfos << msg << llendl;  	for (S32 i=0; i<items.count(); i++)  	{  		LLViewerInventoryItem *item = items.get(i); -		llinfos << i <<" " << item->getName() << llendl; +		LLViewerInventoryItem *linked_item = item ? item->getLinkedItem() : NULL; +		LLUUID asset_id; +		if (linked_item) +		{ +			asset_id = linked_item->getAssetUUID(); +		} +		llinfos << msg << " " << i <<" " << item->getName() << " " << asset_id.asString() << llendl;  	}  	llinfos << llendl;  } | 
