mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Invincibility counts down in air, if using S-Monitor power-up
This commit is contained in:
parent
d07a6cb739
commit
2c5df2f418
1 changed files with 1 additions and 1 deletions
|
|
@ -8603,7 +8603,7 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (player->invincibilitytimer && onground == true)
|
if (player->invincibilitytimer && (onground == true || K_PowerUpRemaining(player, POWERUP_SMONITOR)))
|
||||||
player->invincibilitytimer--;
|
player->invincibilitytimer--;
|
||||||
|
|
||||||
if (!player->invincibilitytimer)
|
if (!player->invincibilitytimer)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue