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
1 changed files with 5 additions and 0 deletions

View File

@ -11313,7 +11313,12 @@ 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