Browse Source

engine: server: query: A2S_PLAYER response should contain bots and normal players

pull/2/head
jeefo 1 year ago committed by Alibek Omarov
parent
commit
873ce0ce48
  1. 5
      engine/server/sv_query.c

5
engine/server/sv_query.c

@ -125,9 +125,10 @@ void SV_SourceQuery_Players( netadr_t from ) @@ -125,9 +125,10 @@ void SV_SourceQuery_Players( netadr_t from )
{
sizebuf_t buf;
char answer[1024 * 8];
int i, client_count, bot_count_unused;
int i, client_count, bot_count;
SV_GetPlayerCount( &client_count, &bot_count_unused );
SV_GetPlayerCount( &client_count, &bot_count );
client_count += bot_count; // bots are counted as players in this reply
if( client_count <= 0 )
return;

Loading…
Cancel
Save