diff options
Diffstat (limited to 'OpenSim/Framework/Data/UserProfileData.cs')
-rw-r--r-- | OpenSim/Framework/Data/UserProfileData.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data/UserProfileData.cs b/OpenSim/Framework/Data/UserProfileData.cs index 3c1f1c7..9c72a5d 100644 --- a/OpenSim/Framework/Data/UserProfileData.cs +++ b/OpenSim/Framework/Data/UserProfileData.cs | |||
@@ -62,8 +62,14 @@ namespace OpenSim.Framework.Data | |||
62 | /// <summary> | 62 | /// <summary> |
63 | /// The regionhandle of the users preffered home region. If multiple sims occupy the same spot, the grid may decide which region the user logs into | 63 | /// The regionhandle of the users preffered home region. If multiple sims occupy the same spot, the grid may decide which region the user logs into |
64 | /// </summary> | 64 | /// </summary> |
65 | public ulong homeRegion; | 65 | public ulong homeRegion |
66 | 66 | { | |
67 | get { return Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256)); } | ||
68 | set { | ||
69 | System.Console.WriteLine("Don't know how to set homeRegion"); | ||
70 | Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256)); | ||
71 | } | ||
72 | } | ||
67 | public uint homeRegionX; | 73 | public uint homeRegionX; |
68 | public uint homeRegionY; | 74 | public uint homeRegionY; |
69 | /// <summary> | 75 | /// <summary> |