2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-24 10:50:58 +01:00

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

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;