diff options
author | Melanie Thielker | 2008-08-14 00:04:37 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-08-14 00:04:37 +0000 |
commit | e3157e61aa50d057b4345cb9d49c973afeb26b15 (patch) | |
tree | 8452565ff0d7e6c3d07541743e0e5f665bc7d03c /OpenSim/Framework/UserProfileData.cs | |
parent | * minor: make it clear on the console when a client is being logged out becau... (diff) | |
download | opensim-SC-e3157e61aa50d057b4345cb9d49c973afeb26b15.zip opensim-SC-e3157e61aa50d057b4345cb9d49c973afeb26b15.tar.gz opensim-SC-e3157e61aa50d057b4345cb9d49c973afeb26b15.tar.bz2 opensim-SC-e3157e61aa50d057b4345cb9d49c973afeb26b15.tar.xz |
Mantis #1946
Thank you, HomerHorwitz, for a patch that corrects and improves TP
to landmark and home position handling.
Diffstat (limited to 'OpenSim/Framework/UserProfileData.cs')
-rw-r--r-- | OpenSim/Framework/UserProfileData.cs | 10 |
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 | { |