Remove spectator crap again

welp...
This commit is contained in:
Sally Coolatta 2023-03-06 01:21:32 -05:00
parent 2b706fb95b
commit 1dccf5dfea

View file

@ -2940,14 +2940,9 @@ mapthing_t *G_FindPodiumStart(INT32 playernum)
UINT8 i;
UINT8 pos = 0;
if (!playeringame[playernum] || players[playernum].spectator)
{
return playerstarts[0]; // go to first spot if you're a spectator
}
for (i = 0; i < MAXPLAYERS; i++)
{
if (!playeringame[i] || players[i].spectator)
if (!playeringame[i])
{
continue;
}