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

This commit is contained in:
jeefo 2023-06-11 12:55:35 +03:00 committed by Alibek Omarov
parent 450f77443d
commit 873ce0ce48
1 changed files with 3 additions and 2 deletions

View File

@ -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;