mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
do not send animated attachments to viewers that do not support them.
This commit is contained in:
@@ -4285,7 +4285,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
}
|
||||
|
||||
if (grp.IsAttachment)
|
||||
{ // Someone else's HUD, why are we getting these?
|
||||
{
|
||||
// animated attachments are nasty if not supported by viewer
|
||||
if(!m_SupportObjectAnimations && grp.RootPart.Shape.MeshFlagEntry)
|
||||
continue;
|
||||
|
||||
// Someone else's HUD, why are we getting these?
|
||||
if (grp.OwnerID != AgentId && grp.HasPrivateAttachmentPoint)
|
||||
continue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user