mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 06:51:09 +00:00
Fix unintended ternary bad parse
This commit is contained in:
parent
fd248e7e58
commit
507a4b6c91
1 changed files with 1 additions and 1 deletions
|
|
@ -11828,7 +11828,7 @@ void K_KartResetPlayerColor(player_t *player)
|
|||
}
|
||||
else
|
||||
{
|
||||
flicker += ((defaultTime - player->invincibilitytimer) / TICRATE / 2) * cv_reducevfx.value ? 4 : 1;
|
||||
flicker += ((defaultTime - player->invincibilitytimer) / TICRATE / 2) * (cv_reducevfx.value ? 4 : 1);
|
||||
}
|
||||
|
||||
if (leveltime % flicker == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue