mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-18 03:22:35 +00:00
Completely prevent bots from utilising PF_WANTSTOJOIN
This commit is contained in:
parent
6c9c6eeaf8
commit
a100987940
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue