aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 96f2621..65030a4 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -80,6 +80,7 @@ namespace OpenSim.Services.LLLoginService
80 protected string m_SearchURL; 80 protected string m_SearchURL;
81 protected string m_Currency; 81 protected string m_Currency;
82 protected string m_ClassifiedFee; 82 protected string m_ClassifiedFee;
83 protected int m_MaxAgentGroups;
83 protected string m_DestinationGuide; 84 protected string m_DestinationGuide;
84 protected string m_AvatarPicker; 85 protected string m_AvatarPicker;
85 protected string m_AllowedClients; 86 protected string m_AllowedClients;
@@ -127,6 +128,11 @@ namespace OpenSim.Services.LLLoginService
127 m_MessageUrl = m_LoginServerConfig.GetString("MessageUrl", string.Empty); 128 m_MessageUrl = m_LoginServerConfig.GetString("MessageUrl", string.Empty);
128 m_DSTZone = m_LoginServerConfig.GetString("DSTZone", "America/Los_Angeles;Pacific Standard Time"); 129 m_DSTZone = m_LoginServerConfig.GetString("DSTZone", "America/Los_Angeles;Pacific Standard Time");
129 130
131 IConfig groupConfig = config.Configs["Groups"];
132 if (groupConfig != null)
133 m_MaxAgentGroups = groupConfig.GetInt("MaxAgentGroups", 42);
134
135
130 // Clean up some of these vars 136 // Clean up some of these vars
131 if (m_MapTileURL != String.Empty) 137 if (m_MapTileURL != String.Empty)
132 { 138 {
@@ -506,7 +512,7 @@ namespace OpenSim.Services.LLLoginService
506 account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, 512 account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
507 where, startLocation, position, lookAt, gestures, processedMessage, home, clientIP, 513 where, startLocation, position, lookAt, gestures, processedMessage, home, clientIP,
508 m_MapTileURL, m_SearchURL, m_Currency, m_DSTZone, 514 m_MapTileURL, m_SearchURL, m_Currency, m_DSTZone,
509 m_DestinationGuide, m_AvatarPicker, m_ClassifiedFee); 515 m_DestinationGuide, m_AvatarPicker, m_ClassifiedFee, m_MaxAgentGroups);
510 516
511 m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName); 517 m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName);
512 518