mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-01 12:43:33 +00:00
No air failsafe during intro
This commit is contained in:
parent
eeda1b3ad5
commit
cc6bb69143
1 changed files with 4 additions and 0 deletions
|
|
@ -10593,6 +10593,10 @@ static void K_AirFailsafe(player_t *player)
|
|||
return;
|
||||
}
|
||||
|
||||
// Maps with "drop-in" POSITION areas (Dragonspire, Hydrocity) cause problems if we allow failsafe.
|
||||
if (leveltime < introtime)
|
||||
return;
|
||||
|
||||
if ((K_GetKartButtons(player) & BT_ACCELERATE) || K_GetForwardMove(player) != 0)
|
||||
{
|
||||
// Queue up later
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue