mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +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++)
|
for (c = 0; c < MAXPLAYERS; c++)
|
||||||
{
|
{
|
||||||
if (playeringame[c])
|
if (playeringame[c] && !players[c].spectator)
|
||||||
{
|
{
|
||||||
if (players[c].pflags & PF_INVIS)
|
if (players[c].pflags & PF_INVIS)
|
||||||
continue; // ignore notarget
|
continue; // ignore notarget
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue