say no to variable charge caps

This commit is contained in:
minenice55 2026-02-13 15:38:55 -05:00
parent 7c1104d7d6
commit 4fd9e1e155

View file

@ -9936,7 +9936,7 @@ static void K_RecoveryDash(player_t *player)
player->forcedtopspeed = cv_kartrecoverydash_spinspeed.value + 8;
if (P_IsObjectOnGround(player->mo))
{
player->recoverydashcharge += player->flashing ? 2 : 1;
player->recoverydashcharge += player->flashing ? ((leveltime & 1) + 1) : 1;
K_SpawnWipeoutTrail(player->mo, (player->recoverydashcharge < RECOVERYDASHWIPETIME));