diff options
| -rw-r--r-- | indra/llcommon/indra_constants.h | 8 | ||||
| -rw-r--r-- | indra/newview/llstartup.cpp | 15 | 
2 files changed, 20 insertions, 3 deletions
diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h index ccdb8a413d..95cb606240 100644 --- a/indra/llcommon/indra_constants.h +++ b/indra/llcommon/indra_constants.h @@ -297,6 +297,14 @@ const U32 START_LOCATION_ID_COUNT 		= 6;  // group constants  const U32 GROUP_MIN_SIZE = 2; +// gMaxAgentGroups is now sent by login.cgi, which +// looks it up from globals.xml. +// +// For now we need an old default value however, +// so the viewer can be deployed ahead of login.cgi. +// +const S32 DEFAULT_MAX_AGENT_GROUPS = 25; +  // radius within which a chat message is fully audible  const F32 CHAT_WHISPER_RADIUS = 10.f;  const F32 CHAT_NORMAL_RADIUS = 20.f; diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index ac320ba761..711240293e 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3149,9 +3149,18 @@ bool process_login_success_response()  		LLViewerMedia::openIDSetup(openid_url, openid_token);  	} -	std::string max_agent_groups(response["max-agent-groups"]); -	gMaxAgentGroups = atoi(max_agent_groups.c_str()); -	 +	if(response.has("max-agent-grid")) {		 +		std::string max_agent_groups(response["max-agent-groups"]); +		gMaxAgentGroups = atoi(max_agent_groups.c_str()); +		LL_INFOS("LLStartup") << "gMaxAgentGroups read from login.cgi: " +							  << gMaxAgentGroups << LL_ENDL; +	} +	else { +		gMaxAgentGroups = DEFAULT_MAX_AGENT_GROUPS; +		LL_INFOS("LLStartup") << "using gMaxAgentGroups default: " +							  << gMaxAgentGroups << LL_ENDL; +	} +		  	bool success = false;  	// JC: gesture loading done below, when we have an asset system  	// in place.  Don't delete/clear gUserCredentials until then.  | 
