fix a missed blocking of sending updates the the new attach points above
hud indexesavinationmerge
parent
e77fafe12d
commit
4c46ebdbf5
|
@ -3828,8 +3828,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
{
|
{
|
||||||
SceneObjectPart e = (SceneObjectPart)entity;
|
SceneObjectPart e = (SceneObjectPart)entity;
|
||||||
SceneObjectGroup g = e.ParentGroup;
|
SceneObjectGroup g = e.ParentGroup;
|
||||||
if (g.RootPart.Shape.State > 30 && g.RootPart.Shape.State < 39) // HUD
|
if (g.HasPrivateAttachmentPoint && g.OwnerID != AgentId)
|
||||||
if (g.OwnerID != AgentId)
|
|
||||||
return; // Don't send updates for other people's HUDs
|
return; // Don't send updates for other people's HUDs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue