aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorMelanie2011-11-10 23:44:19 +0000
committerMelanie2011-11-10 23:44:19 +0000
commite9055cec17dc01f456d2c6ca8c739587507b5b81 (patch)
treef1246f7d3524c81ffdcde2caec834e445b59aaec /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
parentFix turn left and turn right properly. Works for both built-ins and LSL AOs (diff)
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-e9055cec17dc01f456d2c6ca8c739587507b5b81.zip
opensim-SC_OLD-e9055cec17dc01f456d2c6ca8c739587507b5b81.tar.gz
opensim-SC_OLD-e9055cec17dc01f456d2c6ca8c739587507b5b81.tar.bz2
opensim-SC_OLD-e9055cec17dc01f456d2c6ca8c739587507b5b81.tar.xz
Merge branch 'master' into bigmerge
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index b758b8f..da10505 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -2261,7 +2261,7 @@ namespace OpenSim.Region.Framework.Scenes
2261 } 2261 }
2262 2262
2263 /// <summary> 2263 /// <summary>
2264 /// Send metadata about the root prim (name, description, sale price, etc.) to a client. 2264 /// Send metadata about the root prim (name, description, sale price, permissions, etc.) to a client.
2265 /// </summary> 2265 /// </summary>
2266 /// <param name="client"></param> 2266 /// <param name="client"></param>
2267 public void SendPropertiesToClient(IClientAPI client) 2267 public void SendPropertiesToClient(IClientAPI client)
@@ -2886,6 +2886,11 @@ namespace OpenSim.Region.Framework.Scenes
2886 parts[i].UpdatePermissions(AgentID, field, localID, mask, addRemTF); 2886 parts[i].UpdatePermissions(AgentID, field, localID, mask, addRemTF);
2887 2887
2888 HasGroupChanged = true; 2888 HasGroupChanged = true;
2889
2890 // Send the group's properties to all clients once all parts are updated
2891 IClientAPI client;
2892 if (Scene.TryGetClient(AgentID, out client))
2893 SendPropertiesToClient(client);
2889 } 2894 }
2890 2895
2891 #endregion 2896 #endregion