some changes which get us closer to Sqlite storage for users

This commit is contained in:
Sean Dague
2007-08-28 15:11:56 +00:00
parent e4fea6d11b
commit 6bd4c6fee6
3 changed files with 16 additions and 6 deletions

View File

@@ -62,8 +62,14 @@ namespace OpenSim.Framework.Data
/// <summary>
/// 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
/// </summary>
public ulong homeRegion;
public ulong homeRegion
{
get { return Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256)); }
set {
System.Console.WriteLine("Don't know how to set homeRegion");
Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256));
}
}
public uint homeRegionX;
public uint homeRegionY;
/// <summary>