diff options
Merge commit 'de19dc3024e5359f594d0a32c593d905163c24ea' into bigmerge
Conflicts:
OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index ea6aab0..5e9cb32 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -2104,8 +2104,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2104 | 2104 | ||
2105 | #endregion | 2105 | #endregion |
2106 | 2106 | ||
2107 | #region Scheduling | ||
2108 | |||
2109 | public override void Update() | 2107 | public override void Update() |
2110 | { | 2108 | { |
2111 | // Check that the group was not deleted before the scheduled update | 2109 | // Check that the group was not deleted before the scheduled update |
@@ -2256,7 +2254,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
2256 | parts[i].SendTerseUpdateToAllClients(); | 2254 | parts[i].SendTerseUpdateToAllClients(); |
2257 | } | 2255 | } |
2258 | 2256 | ||
2259 | #endregion | 2257 | /// <summary> |
2258 | /// Send metadata about the root prim (name, description, sale price, etc.) to a client. | ||
2259 | /// </summary> | ||
2260 | /// <param name="client"></param> | ||
2261 | public void SendPropertiesToClient(IClientAPI client) | ||
2262 | { | ||
2263 | m_rootPart.SendPropertiesToClient(client); | ||
2264 | } | ||
2260 | 2265 | ||
2261 | #region SceneGroupPart Methods | 2266 | #region SceneGroupPart Methods |
2262 | 2267 | ||
@@ -2751,15 +2756,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2751 | } | 2756 | } |
2752 | 2757 | ||
2753 | /// <summary> | 2758 | /// <summary> |
2754 | /// Return metadata about a prim (name, description, sale price, etc.) | ||
2755 | /// </summary> | ||
2756 | /// <param name="client"></param> | ||
2757 | public void GetProperties(IClientAPI client) | ||
2758 | { | ||
2759 | m_rootPart.GetProperties(client); | ||
2760 | } | ||
2761 | |||
2762 | /// <summary> | ||
2763 | /// Set the name of a prim | 2759 | /// Set the name of a prim |
2764 | /// </summary> | 2760 | /// </summary> |
2765 | /// <param name="name"></param> | 2761 | /// <param name="name"></param> |