mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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
|
else
|
||||||
{
|
{
|
||||||
S_StartSound(player->mo, sfx_s23c);
|
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_SpawnDriftBoostExplosion(player, 4);
|
||||||
K_SpawnDriftElectricSparks(player, SKINCOLOR_SILVER, false);
|
K_SpawnDriftElectricSparks(player, SKINCOLOR_SILVER, false);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue