diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 5353194..ecae8c8 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -4285,7 +4285,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4285 | } | 4285 | } |
4286 | 4286 | ||
4287 | if (grp.IsAttachment) | 4287 | if (grp.IsAttachment) |
4288 | { // Someone else's HUD, why are we getting these? | 4288 | { |
4289 | // animated attachments are nasty if not supported by viewer | ||
4290 | if(!m_SupportObjectAnimations && grp.RootPart.Shape.MeshFlagEntry) | ||
4291 | continue; | ||
4292 | |||
4293 | // Someone else's HUD, why are we getting these? | ||
4289 | if (grp.OwnerID != AgentId && grp.HasPrivateAttachmentPoint) | 4294 | if (grp.OwnerID != AgentId && grp.HasPrivateAttachmentPoint) |
4290 | continue; | 4295 | continue; |
4291 | 4296 | ||