diff options
Diffstat (limited to 'OpenSim/Region/Modules/AvatarFactory')
-rw-r--r-- | OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs index 37b7e8d..5c5cb17 100644 --- a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -61,9 +61,14 @@ namespace OpenSim.Region.Modules.AvatarFactory | |||
61 | { | 61 | { |
62 | appearance = m_scene.CommsManager.UserService.GetUserAppearance(avatarId); | 62 | appearance = m_scene.CommsManager.UserService.GetUserAppearance(avatarId); |
63 | if (appearance != null) | 63 | if (appearance != null) |
64 | { | ||
64 | return true; | 65 | return true; |
66 | } | ||
65 | else | 67 | else |
68 | { | ||
69 | m_log.InfoFormat("[APPEARANCE] appearance not found for {0}", avatarId.ToString()); | ||
66 | return false; | 70 | return false; |
71 | } | ||
67 | 72 | ||
68 | // //should only let one thread at a time do this part | 73 | // //should only let one thread at a time do this part |
69 | // EventWaitHandle waitHandle = null; | 74 | // EventWaitHandle waitHandle = null; |