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

This reverts commit 3fc1069082.
This commit is contained in:
Zachary McAlpin 2019-12-19 15:07:34 -06:00
parent c1815bfe11
commit e82b317451
1 changed files with 5 additions and 0 deletions

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;
}
}
}