summaryrefslogtreecommitdiff
path: root/indra/newview/llwearablelist.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-08-29 14:59:40 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-08-29 14:59:40 -0400
commit3a0cd466f1182f5868dc21b951d78796542abd7d (patch)
treecd35ea7aa70ae9f6e966ba61edd7a28097b30713 /indra/newview/llwearablelist.cpp
parenta3b1a60ed76ac9661bd245e7d5bb801be852944c (diff)
SH-4455 WIP - restrict use of LLWearableHoldingPattern metrics. When changing wearables, bail out if current wearables already match those requested.
Diffstat (limited to 'indra/newview/llwearablelist.cpp')
-rwxr-xr-xindra/newview/llwearablelist.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llwearablelist.cpp b/indra/newview/llwearablelist.cpp
index ef1a953f59..49b3c27ea0 100755
--- a/indra/newview/llwearablelist.cpp
+++ b/indra/newview/llwearablelist.cpp
@@ -81,6 +81,7 @@ void LLWearableList::getAsset(const LLAssetID& assetID, const std::string& weara
LLViewerWearable* instance = get_if_there(mList, assetID, (LLViewerWearable*)NULL );
if( instance )
{
+ LL_DEBUGS("Avatar") << "wearable " << assetID << " found in LLWearableList" << llendl;
asset_arrived_callback( instance, userdata );
}
else