Lightning Shield tether is stronger

This commit is contained in:
Sally Coolatta 2022-08-23 20:31:13 -04:00
parent 0141ea5a7c
commit 3678eb4868

View file

@ -3126,6 +3126,12 @@ static void K_GetKartBoostPower(player_t *player)
draftspeed *= 2;
}
if (player->itemtype == KITEM_LIGHTNINGSHIELD)
{
// infinite tether
draftspeed *= 2;
}
speedboost += FixedMul(draftspeed, player->draftpower); // (Drafting suffers no boost stack penalty.)
numboosts++;
}