diff options
Diffstat (limited to 'Common/OpenSim.Servers/LoginServer.cs')
-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 | { |