mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
Plumb in the partner and the account title fields for profile info.
This commit is contained in:
@@ -141,6 +141,8 @@ namespace OpenSim.Framework
|
||||
//
|
||||
private int _userFlags;
|
||||
private int _godLevel;
|
||||
private string _customType;
|
||||
private LLUUID _partner;
|
||||
|
||||
/// <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
|
||||
@@ -348,5 +350,17 @@ namespace OpenSim.Framework
|
||||
get { return _godLevel; }
|
||||
set { _godLevel = value; }
|
||||
}
|
||||
|
||||
public virtual string CustomType
|
||||
{
|
||||
get { return _customType; }
|
||||
set { _customType = value; }
|
||||
}
|
||||
|
||||
public virtual LLUUID Partner
|
||||
{
|
||||
get { return _partner; }
|
||||
set { _partner = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user