mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 23:41:07 +00:00
Merge branch 'spectators-trigger-radius-thing' into 'master'
Make Radius Script Thing ignore spectators Closes #860 See merge request KartKrew/Kart!1820
This commit is contained in:
commit
402d522be6
1 changed files with 1 additions and 1 deletions
|
|
@ -6807,7 +6807,7 @@ static void P_MobjSceneryThink(mobj_t *mobj)
|
|||
UINT8 i;
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (playeringame[i] == false)
|
||||
if (playeringame[i] == false || players[i].spectator == true)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue