diff options
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 4878c03..c180565 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -401,10 +401,13 @@ namespace OpenSim.Grid.UserServer | |||
401 | if (appearance != null) | 401 | if (appearance != null) |
402 | { | 402 | { |
403 | loginParams["appearance"] = appearance.ToHashTable(); | 403 | loginParams["appearance"] = appearance.ToHashTable(); |
404 | m_log.DebugFormat("[LOGIN]: Found appearance for {0}, {1}", user.FirstName, user.SurName); | 404 | m_log.DebugFormat("[LOGIN]: Found appearance for {0} {1}", user.FirstName, user.SurName); |
405 | } | 405 | } |
406 | else | 406 | else |
407 | m_log.DebugFormat("[LOGIN]: Appearance not for {0}, {1}", user.FirstName, user.SurName); | 407 | { |
408 | m_log.DebugFormat("[LOGIN]: Appearance not for {0} {1}. Creating default.", user.FirstName, user.SurName); | ||
409 | appearance = new AvatarAppearance(); | ||
410 | } | ||
408 | 411 | ||
409 | ArrayList SendParams = new ArrayList(); | 412 | ArrayList SendParams = new ArrayList(); |
410 | SendParams.Add(loginParams); | 413 | SendParams.Add(loginParams); |