D_IsPlayerHumanAndGaming means they're *human*, ie not a bot 🥹

This commit is contained in:
toaster 2023-02-17 18:15:25 +00:00
parent ff29d446eb
commit 9e494e45d0

View file

@ -1701,7 +1701,9 @@ static void Got_NameAndColor(UINT8 **cp, INT32 playernum)
{
if (i == playernum)
continue;
if (!D_IsPlayerHumanAndGaming(i))
if (!playeringame[i])
continue;
if (players[i].spectator)
continue;
break;
}