aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index cf7bf16..c31cbab 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -327,6 +327,12 @@ namespace OpenSim.Region.Framework.Scenes
327 set { RootPart.Name = value; } 327 set { RootPart.Name = value; }
328 } 328 }
329 329
330 public string Description
331 {
332 get { return RootPart.Description; }
333 set { RootPart.Description = value; }
334 }
335
330 /// <summary> 336 /// <summary>
331 /// Added because the Parcel code seems to use it 337 /// Added because the Parcel code seems to use it
332 /// but not sure a object should have this 338 /// but not sure a object should have this