Revert "Don't execute LUAh_PlayerThink(player) for respawning bots"

This reverts commit fc70164f93.
This commit is contained in:
Zachary McAlpin 2019-12-19 15:07:28 -06:00
parent 3fc1069082
commit c1815bfe11

View file

@ -11313,8 +11313,13 @@ void P_PlayerThink(player_t *player)
player->playerstate = PST_REBORN;
}
if (player->playerstate == PST_REBORN)
{
#ifdef HAVE_BLUA
LUAh_PlayerThink(player);
#endif
return;
}
}
#ifdef SEENAMES
if (netgame && player == &players[displayplayer] && !(leveltime % (TICRATE/5)))