mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-23 17:51:31 +00:00
missed a couple spots
This commit is contained in:
parent
a2fce68f14
commit
ea6879b5c2
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue