mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-19 20:12:01 +00:00
Only apply nerfed startboost to players
This commit is contained in:
parent
3bb5fe092d
commit
61663ec89e
1 changed files with 3 additions and 1 deletions
|
|
@ -2076,7 +2076,9 @@ static void K_HandleLapIncrement(player_t *player)
|
|||
else
|
||||
{
|
||||
S_StartSound(player->mo, sfx_s23c);
|
||||
player->startboost = (grandprixinfo.gp ? 60 : 125);
|
||||
player->startboost = 125;
|
||||
if (!K_PlayerUsesBotMovement(player) && grandprixinfo.gp)
|
||||
player->startboost /= 2;
|
||||
|
||||
K_SpawnDriftBoostExplosion(player, 4);
|
||||
K_SpawnDriftElectricSparks(player, SKINCOLOR_SILVER, false);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue