mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-05 22:42:54 +00:00
Merge branch 'nobail-markedfordeath' into 'master'
Can't bail when marked for death See merge request kart-krew-dev/ring-racers-internal!2838
This commit is contained in:
commit
da41685bce
1 changed files with 1 additions and 1 deletions
|
|
@ -14739,7 +14739,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
|
||||
if (player->cmd.buttons & BT_BAIL && (player->cmd.buttons & BT_RESPAWNMASK) != BT_RESPAWNMASK)
|
||||
{
|
||||
if (leveltime < introtime || (gametyperules & GTR_SPHERES) || modeattacking)
|
||||
if (leveltime < introtime || (gametyperules & GTR_SPHERES) || modeattacking || player->markedfordeath)
|
||||
{
|
||||
// No bailing in GTR_SPHERES because I cannot be fucked to do manual Last Chance right now.
|
||||
// Maybe someday!
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue