mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
D_IsPlayerHumanAndGaming means they're *human*, ie not a bot 🥹
This commit is contained in:
parent
ff29d446eb
commit
9e494e45d0
1 changed files with 3 additions and 1 deletions
|
|
@ -1701,7 +1701,9 @@ static void Got_NameAndColor(UINT8 **cp, INT32 playernum)
|
||||||
{
|
{
|
||||||
if (i == playernum)
|
if (i == playernum)
|
||||||
continue;
|
continue;
|
||||||
if (!D_IsPlayerHumanAndGaming(i))
|
if (!playeringame[i])
|
||||||
|
continue;
|
||||||
|
if (players[i].spectator)
|
||||||
continue;
|
continue;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue