Revert "Don't run the LUAh_PlayerThink function if the time ran out in Race or Competition"

This reverts commit 4bb2a826cf.
This commit is contained in:
Zachary McAlpin 2019-12-19 15:07:34 -06:00
parent bcbfb7cb19
commit 6add4f0aa4

View file

@ -11419,7 +11419,12 @@ void P_PlayerThink(player_t *player)
player->lives = 0;
if (player->playerstate == PST_DEAD)
{
#ifdef HAVE_BLUA
LUAh_PlayerThink(player);
#endif
return;
}
}
}