diff options
author | Justin Clark-Casey (justincc) | 2012-01-31 23:03:39 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-01-31 23:03:39 +0000 |
commit | ab89adfaefb7c2858cb2f90f783c010157d980a7 (patch) | |
tree | 42d4c7cc15d82e8756507cf86b5b2d0407d10825 /OpenSim/Region/Framework | |
parent | Add more user feedback if an object isn't found for which delete was requested. (diff) | |
download | opensim-SC_OLD-ab89adfaefb7c2858cb2f90f783c010157d980a7.zip opensim-SC_OLD-ab89adfaefb7c2858cb2f90f783c010157d980a7.tar.gz opensim-SC_OLD-ab89adfaefb7c2858cb2f90f783c010157d980a7.tar.bz2 opensim-SC_OLD-ab89adfaefb7c2858cb2f90f783c010157d980a7.tar.xz |
Implement "show object uuid <uuid>" console command.
This will show details about a part with the given uuid if it's found.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 739c5fa..e7f2fdb 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -264,6 +264,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
264 | set { RootPart.Name = value; } | 264 | set { RootPart.Name = value; } |
265 | } | 265 | } |
266 | 266 | ||
267 | public string Description | ||
268 | { | ||
269 | get { return RootPart.Description; } | ||
270 | set { RootPart.Description = value; } | ||
271 | } | ||
272 | |||
267 | /// <summary> | 273 | /// <summary> |
268 | /// Added because the Parcel code seems to use it | 274 | /// Added because the Parcel code seems to use it |
269 | /// but not sure a object should have this | 275 | /// but not sure a object should have this |