mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 21:11:51 +00:00
Fix "all players" check in T_EachTimeThinker
This commit is contained in:
parent
45f848c4ed
commit
a6d921e37c
1 changed files with 2 additions and 2 deletions
|
|
@ -1478,8 +1478,8 @@ void T_EachTimeThinker(eachtime_t *eachtime)
|
|||
{
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (P_IsPlayerValid(i) && playersArea[i])
|
||||
continue;
|
||||
if (P_IsPlayerValid(i) && !playersArea[i])
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue