mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Merge branch 'trigger-bruh' into 'next'
Fix "all players" check in T_EachTimeThinker See merge request STJr/SRB2!1668
This commit is contained in:
commit
76bbef29a9
1 changed files with 2 additions and 2 deletions
|
@ -1516,8 +1516,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…
Reference in a new issue