aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorUbitUmarov2014-08-19 03:47:26 +0100
committerUbitUmarov2014-08-19 03:47:26 +0100
commit4c46ebdbf501733e1b9d7e23943da095c4f60bce (patch)
tree17f89450b118e9e5036bc71dbadcd594a16305de /OpenSim/Region/ClientStack/Linden
parent*test* send attachments in sync, resend avatar at end (diff)
downloadopensim-SC-4c46ebdbf501733e1b9d7e23943da095c4f60bce.zip
opensim-SC-4c46ebdbf501733e1b9d7e23943da095c4f60bce.tar.gz
opensim-SC-4c46ebdbf501733e1b9d7e23943da095c4f60bce.tar.bz2
opensim-SC-4c46ebdbf501733e1b9d7e23943da095c4f60bce.tar.xz
fix a missed blocking of sending updates the the new attach points above
hud indexes
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 6f41ac8..8f69b3e 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -3828,8 +3828,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3828 { 3828 {
3829 SceneObjectPart e = (SceneObjectPart)entity; 3829 SceneObjectPart e = (SceneObjectPart)entity;
3830 SceneObjectGroup g = e.ParentGroup; 3830 SceneObjectGroup g = e.ParentGroup;
3831 if (g.RootPart.Shape.State > 30 && g.RootPart.Shape.State < 39) // HUD 3831 if (g.HasPrivateAttachmentPoint && g.OwnerID != AgentId)
3832 if (g.OwnerID != AgentId)
3833 return; // Don't send updates for other people's HUDs 3832 return; // Don't send updates for other people's HUDs
3834 } 3833 }
3835 3834