Adds UserFlags and GodLevel to the user data store and plumbs then in.

This will have no effect unless both the UGAI and the region are
this revision or later
This commit is contained in:
Melanie Thielker
2008-08-14 19:59:32 +00:00
parent c2f1771c63
commit 7161689a97
8 changed files with 82 additions and 5 deletions

View File

@@ -136,6 +136,12 @@ namespace OpenSim.Framework
/// </summary>
private LLUUID _webLoginKey;
// Data for estates and other goodies
// to get away from per-machine configs a little
//
private int _userFlags;
private int _godLevel;
/// <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>
@@ -330,5 +336,17 @@ namespace OpenSim.Framework
get { return _currentAgent; }
set { _currentAgent = value; }
}
public virtual int UserFlags
{
get { return _userFlags; }
set { _userFlags = value; }
}
public virtual int GodLevel
{
get { return _godLevel; }
set { _godLevel = value; }
}
}
}
}