mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-18 11:32:24 +00:00
Merge branch 'no-intro-failsafe' into 'master'
No air failsafe during intro (resolves #508) Closes #508 See merge request KartKrew/Kart!1490
This commit is contained in:
commit
a6fb8f999d
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