diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-11-14 18:30:14 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-11-14 18:30:14 -0500 |
commit | dccfd66d94ad813b55d6dc1667f94288079893e9 (patch) | |
tree | 24306adabbef9d68cd2082858e518f4ee69c595c | |
parent | 2540568a83ca07856ddb760a6983efb3b85430a2 (diff) |
block appearance messages while editing
-rwxr-xr-x | indra/newview/llvoavatar.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 6f4dfdbe2a..3a5cc9fc14 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -6462,6 +6462,12 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) return; } + if (isSelf() && isEditingAppearance()) + { + llinfos << "ignoring appearance message while in appearance edit" << llendl; + return; + } + mUseServerBakes = (appearance_version > 0); applyParsedTEMessage(tec); |