missed a couple spots

This commit is contained in:
Shane Ellis 2021-01-24 12:43:13 -05:00
parent a2fce68f14
commit ea6879b5c2

View file

@ -743,8 +743,8 @@ boolean P_LookForPlayers(mobj_t *actor, boolean allaround, boolean tracer, fixed
if (player->mo->health <= 0) if (player->mo->health <= 0)
continue; // dead continue; // dead
if (player->bot && player->bot != 3) if (player->bot == BOT_2PAI || player->bot == BOT_2PHUMAN)
continue; // ignore bots continue; // ignore followbots
if (player->quittime) if (player->quittime)
continue; // Ignore uncontrolled bodies continue; // Ignore uncontrolled bodies
@ -3590,7 +3590,7 @@ void A_1upThinker(mobj_t *actor)
for (i = 0; i < MAXPLAYERS; i++) for (i = 0; i < MAXPLAYERS; i++)
{ {
if (!playeringame[i] || players[i].bot || players[i].spectator) if (!playeringame[i] || players[i].bot == BOT_2PAI || players[i].bot == BOT_2PHUMAN || players[i].spectator)
continue; continue;
if (!players[i].mo) if (!players[i].mo)