diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-10-17 13:43:19 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-10-17 13:43:19 -0400 |
commit | 7d6da2ebe8db7aa73113659c709d03e16eca5094 (patch) | |
tree | 049aec95133d61305923b94f499715c881e7f96d /indra/llappearance | |
parent | 4a0a88ed335e9082fe1acfbdf2593e179304b64e (diff) |
more param location logging, added wearable type info to dumpArchetypeXML
Diffstat (limited to 'indra/llappearance')
-rwxr-xr-x | indra/llappearance/llwearable.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llappearance/llwearable.cpp b/indra/llappearance/llwearable.cpp index f4891c61bd..b33adb254d 100755 --- a/indra/llappearance/llwearable.cpp +++ b/indra/llappearance/llwearable.cpp @@ -128,7 +128,10 @@ void LLWearable::createVisualParams(LLAvatarAppearance *avatarp) { if (param->getWearableType() == mType) { - addVisualParam(param->cloneParam(this)); + LLVisualParam *clone_param = param->cloneParam(this); + clone_param->setParamLocation(LOC_UNKNOWN); + clone_param->setParamLocation(LOC_WEARABLE); + addVisualParam(clone_param); } } |