Skip to content

Commit

Permalink
CATCH: Bot_minplayers not working on CTKD on network servers. #341
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Dec 17, 2024
1 parent f689b29 commit 3ed9d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/g_bot.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ static void G_CheckMinimumPlayers(void) {
}
}
// cyr_zMinplayer {
else if (g_gametype.integer == GT_SPRAYFFA || g_gametype.integer == GT_LPS || g_gametype.integer == GT_FFA) {
else if (g_gametype.integer != GT_SINGLE_PLAYER) {
if (minplayers >= g_maxclients.integer) {
// cyr_zMinplayer }
minplayers = g_maxclients.integer - 1;
Expand Down

0 comments on commit 3ed9d85

Please sign in to comment.