Completely prevent bots from utilising PF_WANTSTOJOIN

This commit is contained in:
toaster 2022-10-15 16:51:16 +01:00
parent 6c9c6eeaf8
commit a100987940

View file

@ -11566,7 +11566,7 @@ void K_CheckSpectateStatus(void)
return;
continue;
}
else if (!(players[i].pflags & PF_WANTSTOJOIN))
else if (players[i].bot || !(players[i].pflags & PF_WANTSTOJOIN))
continue;
respawnlist[numjoiners++] = i;