mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Revert "Don't execute LUAh_PlayerThink(player) for respawning bots"
This reverts commit 96a41ca2b8.
This commit is contained in:
parent
4bb2a826cf
commit
bcbfb7cb19
1 changed files with 5 additions and 0 deletions
|
|
@ -11313,8 +11313,13 @@ void P_PlayerThink(player_t *player)
|
||||||
player->playerstate = PST_REBORN;
|
player->playerstate = PST_REBORN;
|
||||||
}
|
}
|
||||||
if (player->playerstate == PST_REBORN)
|
if (player->playerstate == PST_REBORN)
|
||||||
|
{
|
||||||
|
#ifdef HAVE_BLUA
|
||||||
|
LUAh_PlayerThink(player);
|
||||||
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef SEENAMES
|
#ifdef SEENAMES
|
||||||
if (netgame && player == &players[displayplayer] && !(leveltime % (TICRATE/5)))
|
if (netgame && player == &players[displayplayer] && !(leveltime % (TICRATE/5)))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue