We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3caf20f commit b4a6af5Copy full SHA for b4a6af5
indra/newview/llviewermenu.cpp
@@ -8712,6 +8712,12 @@ LLVOAvatar* find_avatar_from_object(LLViewerObject* object)
8712
}
8713
else if( !object->isAvatar() )
8714
{
8715
+ // Check for animesh objects (animated objects with a control avatar)
8716
+ LLVOAvatar* avatar = object->getAvatar();
8717
+ if (avatar)
8718
+ {
8719
+ return avatar;
8720
+ }
8721
object = NULL;
8722
8723
0 commit comments