aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorSean Dague2008-07-15 18:57:18 +0000
committerSean Dague2008-07-15 18:57:18 +0000
commitb5efb49d74919b991fe86b53692180cf4829b565 (patch)
treedced5c727097a1793f8c0ecd26cb614a3e832d51 /OpenSim/Region
parent* Expose client statistics to the console via 'show stats' (diff)
downloadopensim-SC_OLD-b5efb49d74919b991fe86b53692180cf4829b565.zip
opensim-SC_OLD-b5efb49d74919b991fe86b53692180cf4829b565.tar.gz
opensim-SC_OLD-b5efb49d74919b991fe86b53692180cf4829b565.tar.bz2
opensim-SC_OLD-b5efb49d74919b991fe86b53692180cf4829b565.tar.xz
added new ParentUUID property to map out from SOP.
Updated some nhibernate parts, started in on migration.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 677a120..36d1f50 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -920,6 +920,11 @@ namespace OpenSim.Region.Environment.Scenes
920 { 920 {
921 get { return ParentGroup.Scene.RegionInfo.RegionID; } 921 get { return ParentGroup.Scene.RegionInfo.RegionID; }
922 } 922 }
923 [XmlIgnore]
924 public LLUUID ParentUUID
925 {
926 get { return ParentGroup.UUID; }
927 }
923 928
924 #endregion Public Properties with only Get 929 #endregion Public Properties with only Get
925 930