Whoops, use the right boost type (and not in Duel)

This commit is contained in:
Antonio Martinez 2025-10-11 03:38:33 -04:00
parent c8c56acd65
commit 2c4c94d80d
2 changed files with 2 additions and 2 deletions

View file

@ -10210,7 +10210,7 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
UINT16 maxduration = 125;
UINT16 duration = FixedRescale(leveltime - starttime, 0, TICRATE*2, Easing_Linear, maxduration, 0);
player->aciddropdashboost += duration;
player->neostartboost += duration;
S_StartSound(player->mo, sfx_s23c);
if (duration)

View file

@ -2074,7 +2074,7 @@ static void K_HandleLapIncrement(player_t *player)
// CONS_Printf("%d: %s gimme first blood\n", leveltime, player_names[player - players]);
player->pflags2 |= PF2_GIMMEFIRSTBLOOD;
}
else
else if (!K_InRaceDuel())
{
// CONS_Printf("%d: %s gimme start award\n", leveltime, player_names[player - players]);
player->pflags2 |= PF2_GIMMESTARTAWARDS;