No tethering off of the person who got the start boost

This commit is contained in:
Sally Coolatta 2020-07-27 02:29:43 -04:00
parent c685f45563
commit dfe4d4a219

View file

@ -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);