diff options
author | Sean Dague | 2007-08-28 15:11:56 +0000 |
---|---|---|
committer | Sean Dague | 2007-08-28 15:11:56 +0000 |
commit | 6bd4c6fee6b59c5b986df83c8471880b4b2e4f52 (patch) | |
tree | b44b71cf1723904dcf571a8d30b9ddfa7fc7c6aa /OpenSim/Framework/Data | |
parent | Moved XferModule to OpenSim.Region.Environment.Modules namespace/directory. (diff) | |
download | opensim-SC_OLD-6bd4c6fee6b59c5b986df83c8471880b4b2e4f52.zip opensim-SC_OLD-6bd4c6fee6b59c5b986df83c8471880b4b2e4f52.tar.gz opensim-SC_OLD-6bd4c6fee6b59c5b986df83c8471880b4b2e4f52.tar.bz2 opensim-SC_OLD-6bd4c6fee6b59c5b986df83c8471880b4b2e4f52.tar.xz |
some changes which get us closer to Sqlite storage for users
Diffstat (limited to 'OpenSim/Framework/Data')
-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> |