mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-18 03:22:35 +00:00
Merge branch 'turret-seeing-ghosts' into 'next'
Fix P_SupermanLook4Players assigning spectators as targets Closes #209 See merge request STJr/SRB2!1151
This commit is contained in:
commit
d20b02b6cd
1 changed files with 1 additions and 1 deletions
|
|
@ -4194,7 +4194,7 @@ boolean P_SupermanLook4Players(mobj_t *actor)
|
|||
|
||||
for (c = 0; c < MAXPLAYERS; c++)
|
||||
{
|
||||
if (playeringame[c])
|
||||
if (playeringame[c] && !players[c].spectator)
|
||||
{
|
||||
if (players[c].pflags & PF_INVIS)
|
||||
continue; // ignore notarget
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue