aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserProfileData.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-21 20:12:33 +0000
committerJustin Clarke Casey2009-04-21 20:12:33 +0000
commit607156cae844ec97b8bab273075127a6248a81c3 (patch)
tree4f8b9c474fc0ce3f23feeb623fadb8bd366ec654 /OpenSim/Framework/UserProfileData.cs
parentThank you kindly, TLaukkan for a patch that: (diff)
downloadopensim-SC_OLD-607156cae844ec97b8bab273075127a6248a81c3.zip
opensim-SC_OLD-607156cae844ec97b8bab273075127a6248a81c3.tar.gz
opensim-SC_OLD-607156cae844ec97b8bab273075127a6248a81c3.tar.bz2
opensim-SC_OLD-607156cae844ec97b8bab273075127a6248a81c3.tar.xz
* Comment out user profile cache update method for now
Diffstat (limited to 'OpenSim/Framework/UserProfileData.cs')
-rw-r--r--OpenSim/Framework/UserProfileData.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs
index 0ddf5ab..04abfd6 100644
--- a/OpenSim/Framework/UserProfileData.cs
+++ b/OpenSim/Framework/UserProfileData.cs
@@ -156,7 +156,12 @@ namespace OpenSim.Framework
156 /// </summary> 156 /// </summary>
157 public virtual ulong HomeRegion 157 public virtual ulong HomeRegion
158 { 158 {
159 get { return Utils.UIntsToLong((m_homeRegionX * (uint)Constants.RegionSize), (m_homeRegionY * (uint)Constants.RegionSize)); } 159 get
160 {
161 return Utils.UIntsToLong(
162 m_homeRegionX * (uint)Constants.RegionSize, m_homeRegionY * (uint)Constants.RegionSize);
163 }
164
160 set 165 set
161 { 166 {
162 m_homeRegionX = (uint) (value >> 40); 167 m_homeRegionX = (uint) (value >> 40);