From dfe4d4a2194d2373d4c0de662ded05540b1e2240 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 27 Jul 2020 02:29:43 -0400 Subject: [PATCH] No tethering off of the person who got the start boost --- src/k_kart.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/k_kart.c b/src/k_kart.c index 4f33c1a35..7efcc697f 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -1439,6 +1439,10 @@ static void K_UpdateDraft(player_t *player) if (players[i].speed < 20*players[i].mo->scale) continue; + // No tethering off of the guy who got the starting bonus :P + if (players[i].kartstuff[k_startboost] > 0) + continue; + #ifndef EASYDRAFTTEST yourangle = R_PointToAngle2(0, 0, player->mo->momx, player->mo->momy); theirangle = R_PointToAngle2(0, 0, players[i].mo->momx, players[i].mo->momy);