diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-05-10 16:15:24 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-05-10 16:15:24 -0400 |
commit | 41bdfe07bba897aa3217c760b3539f8b7288bab5 (patch) | |
tree | 39dde9832a7150a981453e7e0692dad4021812d1 /indra/llappearance | |
parent | 184a5fd82be3a4969ac6547367d1aad458129461 (diff) |
SL-315 - resetSkeleton() work including attachment points, reapplying appearance message values.
Diffstat (limited to 'indra/llappearance')
-rwxr-xr-x | indra/llappearance/lldriverparam.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llappearance/lldriverparam.cpp b/indra/llappearance/lldriverparam.cpp index e630c1118b..e5e502b158 100755 --- a/indra/llappearance/lldriverparam.cpp +++ b/indra/llappearance/lldriverparam.cpp @@ -110,6 +110,14 @@ void LLDriverParamInfo::toStream(std::ostream &out) out << std::endl; + // FIXME - this mDriverParam backlink makes no sense, because the + // LLDriverParamInfos are static objects - there's only one copy + // for each param type, so the backlink will just reference the + // corresponding param in the most recently created + // avatar. Apparently these toStream() methods are not currently + // used anywhere, so it's not an urgent problem. + LL_WARNS_ONCE() << "Invalid usage of mDriverParam." << LL_ENDL; + if(mDriverParam && mDriverParam->getAvatarAppearance()->isSelf() && mDriverParam->getAvatarAppearance()->isValid()) { |