diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-03-20 18:37:07 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-03-20 18:37:07 -0700 |
commit | bb0f2d3784e3b14e673c893e95072bca5c54848c (patch) | |
tree | 83ac33836392e40e2f7d05990014ac7ea285ccdf | |
parent | 0706cf14debab7eec738de024d5b9ce246ce5354 (diff) |
BUGFIX: Removing one more instance of the server warning notification that oddurs when attempting to stand up while sitting on the premium wilderness boat.
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index c505936097..c4233dbe8d 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -758,7 +758,7 @@ void LLVOAvatarSelf::stopMotionFromSource(const LLUUID& source_id) LLViewerObject* object = gObjectList.findObject(source_id); if (object) { - object->setFlags(FLAGS_ANIM_SOURCE, FALSE); + object->setFlagsWithoutUpdate(FLAGS_ANIM_SOURCE, FALSE); } } |