diff options
Diffstat (limited to 'indra/llappearance')
| -rwxr-xr-x[-rw-r--r--] | indra/llappearance/llwearabledata.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llappearance/llwearabledata.cpp b/indra/llappearance/llwearabledata.cpp index d70bbf286a..401b1dc192 100644..100755 --- a/indra/llappearance/llwearabledata.cpp +++ b/indra/llappearance/llwearabledata.cpp @@ -119,6 +119,11 @@ U32 LLWearableData::pushWearable(const LLWearableType::EType type,  void LLWearableData::wearableUpdated(LLWearable *wearable, BOOL removed)  {  	wearable->setUpdated(); +	// FIXME DRANO avoid updating params via wearables when rendering server-baked appearance. +	if (mAvatarAppearance->isUsingServerBakes() && !mAvatarAppearance->isUsingLocalAppearance()) +	{ +		return; +	}  	if (!removed)  	{  		pullCrossWearableValues(wearable->getType());  | 
