aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserProfileData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/UserProfileData.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs
index 17d339e..2b0e15f 100644
--- a/OpenSim/Framework/UserProfileData.cs
+++ b/OpenSim/Framework/UserProfileData.cs
@@ -149,6 +149,16 @@ namespace OpenSim.Framework
149 } 149 }
150 } 150 }
151 151
152 private LLUUID _homeRegionID;
153 /// <summary>
154 /// The regionID of the users home region. This is unique; even if the position of the region changes within the grid, this will refer to the same region.
155 /// </summary>
156 public LLUUID HomeRegionID
157 {
158 get { return _homeRegionID; }
159 set { _homeRegionID = value; }
160 }
161
152 // Property wrappers 162 // Property wrappers
153 public virtual LLUUID ID 163 public virtual LLUUID ID
154 { 164 {