diff options
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index c85d35a..83f9ade 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -278,6 +278,10 @@ namespace OpenSim.Services.LLLoginService | |||
278 | return LLFailedLoginResponse.InventoryProblem; | 278 | return LLFailedLoginResponse.InventoryProblem; |
279 | } | 279 | } |
280 | 280 | ||
281 | // Get active gestures | ||
282 | List<InventoryItemBase> gestures = m_InventoryService.GetActiveGestures(account.PrincipalID); | ||
283 | m_log.DebugFormat("[LLOGIN SERVICE]: {0} active gestures", gestures.Count); | ||
284 | |||
281 | // | 285 | // |
282 | // Login the presence | 286 | // Login the presence |
283 | // | 287 | // |
@@ -356,7 +360,7 @@ namespace OpenSim.Services.LLLoginService | |||
356 | // Finally, fill out the response and return it | 360 | // Finally, fill out the response and return it |
357 | // | 361 | // |
358 | LLLoginResponse response = new LLLoginResponse(account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, | 362 | LLLoginResponse response = new LLLoginResponse(account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, |
359 | where, startLocation, position, lookAt, m_WelcomeMessage, home, clientIP); | 363 | where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP); |
360 | 364 | ||
361 | m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to client."); | 365 | m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to client."); |
362 | return response; | 366 | return response; |