diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 3fa6bb0..4355394 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1873,7 +1873,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1873 | } | 1873 | } |
1874 | 1874 | ||
1875 | /// <summary> | 1875 | /// <summary> |
1876 | /// Send metadata about the root prim (name, description, sale price, etc.) to a client. | 1876 | /// Send metadata about the root prim (name, description, sale price, permissions, etc.) to a client. |
1877 | /// </summary> | 1877 | /// </summary> |
1878 | /// <param name="client"></param> | 1878 | /// <param name="client"></param> |
1879 | public void SendPropertiesToClient(IClientAPI client) | 1879 | public void SendPropertiesToClient(IClientAPI client) |
@@ -2481,6 +2481,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
2481 | parts[i].UpdatePermissions(AgentID, field, localID, mask, addRemTF); | 2481 | parts[i].UpdatePermissions(AgentID, field, localID, mask, addRemTF); |
2482 | 2482 | ||
2483 | HasGroupChanged = true; | 2483 | HasGroupChanged = true; |
2484 | |||
2485 | // Send the group's properties to all clients once all parts are updated | ||
2486 | IClientAPI client; | ||
2487 | if (Scene.TryGetClient(AgentID, out client)) | ||
2488 | SendPropertiesToClient(client); | ||
2484 | } | 2489 | } |
2485 | 2490 | ||
2486 | #endregion | 2491 | #endregion |