diff options
| author | Nyx Linden <nyx@lindenlab.com> | 2013-07-18 16:31:50 -0400 |
|---|---|---|
| committer | Nyx Linden <nyx@lindenlab.com> | 2013-07-18 16:31:50 -0400 |
| commit | a1ece43905db86cb6953ce9848228122637e5708 (patch) | |
| tree | c230e4f0f156313566239110ec0959eb26baf965 /indra/newview/llagent.cpp | |
| parent | a85fa3b10a406218cabfecc0d592e816f8dfdb53 (diff) | |
SH-3875 FIX Failure to bake face wrinkles
Wrinkles have been a deprecated/non-functional feature for a few years now.
Removing the user-facing sliders to prevent confusion.
Diffstat (limited to 'indra/newview/llagent.cpp')
| -rwxr-xr-x | indra/newview/llagent.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 21625815b9..1c27811351 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -4419,7 +4419,8 @@ void LLAgent::sendAgentSetAppearance() param; param = (LLViewerVisualParam*)gAgentAvatarp->getNextVisualParam()) { - if (param->getGroup() == VISUAL_PARAM_GROUP_TWEAKABLE) // do not transmit params of group VISUAL_PARAM_GROUP_TWEAKABLE_NO_TRANSMIT + if (param->getGroup() == VISUAL_PARAM_GROUP_TWEAKABLE || + param->getGroup() == VISUAL_PARAM_GROUP_TRANSMIT_NOT_TWEAKABLE) // do not transmit params of group VISUAL_PARAM_GROUP_TWEAKABLE_NO_TRANSMIT { msg->nextBlockFast(_PREHASH_VisualParam ); |
