Index: client/cl_main.c =================================================================== --- client/cl_main.c (revision 1858) +++ client/cl_main.c (working copy) @@ -3348,6 +3348,8 @@ server->minPing = atoi(Info_ValueForKey(info, "minping")); server->maxPing = atoi(Info_ValueForKey(info, "maxping")); server->punkbuster = atoi(Info_ValueForKey(info, "punkbuster")); + server->g_humanplayers = atoi(Info_ValueForKey(info, "g_humanplayers")); + server->g_needpass = atoi(Info_ValueForKey(info, "g_needpass")); } server->ping = ping; } @@ -3466,6 +3468,8 @@ cls.localServers[i].gameType = 0; cls.localServers[i].netType = from.type; cls.localServers[i].punkbuster = 0; + cls.localServers[i].g_humanplayers = 0; + cls.localServers[i].g_needpass = 0; Q_strncpyz( info, MSG_ReadString( msg ), MAX_INFO_STRING ); if (strlen(info)) { Index: client/cl_ui.c =================================================================== --- client/cl_ui.c (revision 1858) +++ client/cl_ui.c (working copy) @@ -298,6 +298,8 @@ Info_SetValueForKey( info, "nettype", va("%i",server->netType)); Info_SetValueForKey( info, "addr", NET_AdrToStringwPort(server->adr)); Info_SetValueForKey( info, "punkbuster", va("%i", server->punkbuster)); + Info_SetValueForKey( info, "g_needpass", va("%i", server->g_needpass)); + Info_SetValueForKey( info, "g_humanplayers", va("%i", server->g_humanplayers)); Q_strncpyz(buf, info, buflen); } else { if (buf) { Index: client/client.h =================================================================== --- client/client.h (revision 1858) +++ client/client.h (working copy) @@ -296,6 +296,8 @@ int ping; qboolean visible; int punkbuster; + int g_humanplayers; + int g_needpass; } serverInfo_t; typedef struct { Index: server/sv_main.c =================================================================== --- server/sv_main.c (revision 1858) +++ server/sv_main.c (working copy) @@ -605,7 +605,7 @@ ================ */ void SVC_Info( netadr_t from ) { - int i, count; + int i, count, humans; char *gamedir; char infostring[MAX_INFO_STRING]; @@ -624,10 +624,13 @@ return; // don't count privateclients - count = 0; + count = humans = 0; for ( i = sv_privateClients->integer ; i < sv_maxclients->integer ; i++ ) { if ( svs.clients[i].state >= CS_CONNECTED ) { count++; + if (svs.clients[i].netchan.remoteAddress.type != NA_BOT) { + humans++; + } } } @@ -641,10 +644,12 @@ Info_SetValueForKey( infostring, "hostname", sv_hostname->string ); Info_SetValueForKey( infostring, "mapname", sv_mapname->string ); Info_SetValueForKey( infostring, "clients", va("%i", count) ); + Info_SetValueForKey( infostring, "g_humanplayers", va("%i", humans ) ); Info_SetValueForKey( infostring, "sv_maxclients", va("%i", sv_maxclients->integer - sv_privateClients->integer ) ); Info_SetValueForKey( infostring, "gametype", va("%i", sv_gametype->integer ) ); Info_SetValueForKey( infostring, "pure", va("%i", sv_pure->integer ) ); + Info_SetValueForKey( infostring, "g_needpass", Cvar_VariableIntegerValue( "g_needpass" )); #ifdef USE_VOIP if (sv_voip->integer) {