fix a missed blocking of sending updates the the new attach points above

hud indexes
avinationmerge
UbitUmarov 2014-08-19 03:47:26 +01:00
parent e77fafe12d
commit 4c46ebdbf5
1 changed files with 1 additions and 2 deletions

View File

@ -3828,8 +3828,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
SceneObjectPart e = (SceneObjectPart)entity;
SceneObjectGroup g = e.ParentGroup;
if (g.RootPart.Shape.State > 30 && g.RootPart.Shape.State < 39) // HUD
if (g.OwnerID != AgentId)
if (g.HasPrivateAttachmentPoint && g.OwnerID != AgentId)
return; // Don't send updates for other people's HUDs
}