diff options
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index c1b45b2..847cc07 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -323,12 +323,6 @@ namespace OpenSim.Services.LLLoginService | |||
323 | return LLFailedLoginResponse.UserProblem; | 323 | return LLFailedLoginResponse.UserProblem; |
324 | } | 324 | } |
325 | 325 | ||
326 | if (account.UserLevel < 0) | ||
327 | { | ||
328 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account"); | ||
329 | return LLFailedLoginResponse.UnverifiedAccountProblem; | ||
330 | } | ||
331 | |||
332 | if (account.UserLevel < m_MinLoginLevel) | 326 | if (account.UserLevel < m_MinLoginLevel) |
333 | { | 327 | { |
334 | m_log.InfoFormat( | 328 | m_log.InfoFormat( |
@@ -530,7 +524,7 @@ namespace OpenSim.Services.LLLoginService | |||
530 | LLLoginResponse response | 524 | LLLoginResponse response |
531 | = new LLLoginResponse( | 525 | = new LLLoginResponse( |
532 | account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, | 526 | account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, |
533 | where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP, | 527 | where, startLocation, position, lookAt, gestures, processedMessage, home, clientIP, |
534 | m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone, | 528 | m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone, |
535 | m_DestinationGuide, m_AvatarPicker, realID, m_ClassifiedFee,m_MaxAgentGroups); | 529 | m_DestinationGuide, m_AvatarPicker, realID, m_ClassifiedFee,m_MaxAgentGroups); |
536 | 530 | ||