diff options
author | mingchen | 2007-06-05 00:26:37 +0000 |
---|---|---|
committer | mingchen | 2007-06-05 00:26:37 +0000 |
commit | 3c261876a15621fd3b38d150f763044602a6892d (patch) | |
tree | b86440a9766ed4869f272c445e5e05d31705af1a /Common | |
parent | Fixed loading of Animations from XML file (diff) | |
download | opensim-SC_OLD-3c261876a15621fd3b38d150f763044602a6892d.zip opensim-SC_OLD-3c261876a15621fd3b38d150f763044602a6892d.tar.gz opensim-SC_OLD-3c261876a15621fd3b38d150f763044602a6892d.tar.bz2 opensim-SC_OLD-3c261876a15621fd3b38d150f763044602a6892d.tar.xz |
*Cleaned up Configuration Setup questions
*Added Configuration option for Master User Avatar name and (in sandbox mode) password
*Added support for Master User in sandbox mode. Support lacks for grid mode still.
**Grid support is possible when remotely fetching avatar data by name and UUID is available
*Currently lacks parcel buying support. For now, in sandbox mode, log into master user information to own the parcel
Diffstat (limited to 'Common')
-rw-r--r-- | Common/OpenSim.Servers/LoginServer.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Common/OpenSim.Servers/LoginServer.cs b/Common/OpenSim.Servers/LoginServer.cs index 6fd174b..7ee8ae2 100644 --- a/Common/OpenSim.Servers/LoginServer.cs +++ b/Common/OpenSim.Servers/LoginServer.cs | |||
@@ -254,9 +254,16 @@ namespace OpenSim.UserServer | |||
254 | string mdPassword = EncodePassword(password); | 254 | string mdPassword = EncodePassword(password); |
255 | Console.WriteLine("with password: " + mdPassword); | 255 | Console.WriteLine("with password: " + mdPassword); |
256 | this.userManager.CreateNewProfile(firstName, lastName, mdPassword); | 256 | this.userManager.CreateNewProfile(firstName, lastName, mdPassword); |
257 | |||
257 | return true; | 258 | return true; |
258 | } | 259 | } |
259 | 260 | ||
261 | public UserProfile GetProfileByName(string firstName, string lastName) | ||
262 | { | ||
263 | return this.userManager.GetProfileByName(firstName, lastName); | ||
264 | } | ||
265 | |||
266 | |||
260 | //IUserServer implementation | 267 | //IUserServer implementation |
261 | public AgentInventory RequestAgentsInventory(LLUUID agentID) | 268 | public AgentInventory RequestAgentsInventory(LLUUID agentID) |
262 | { | 269 | { |