mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +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;
|
return;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (!(players[i].pflags & PF_WANTSTOJOIN))
|
else if (players[i].bot || !(players[i].pflags & PF_WANTSTOJOIN))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
respawnlist[numjoiners++] = i;
|
respawnlist[numjoiners++] = i;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue