mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-17 04:02:50 +00:00
Don't delete your kickstartaccel if you cross the finish line and the bot driver takes over.
This commit is contained in:
parent
56d0a6e43d
commit
75b53bbb52
1 changed files with 1 additions and 1 deletions
|
|
@ -4329,7 +4329,7 @@ void P_PlayerThink(player_t *player)
|
|||
player->kickstartaccel = 0;
|
||||
else if (cmd->buttons & BT_REALACCELERATE)
|
||||
{
|
||||
if (!(player->pflags & PF_ACCELDOWN))
|
||||
if (!player->exiting && !(player->pflags & PF_ACCELDOWN))
|
||||
player->kickstartaccel = 0;
|
||||
else if (player->kickstartaccel < ACCEL_KICKSTART)
|
||||
player->kickstartaccel++;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue