mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Only tether off UFO if it's not just a teeny emerald
This commit is contained in:
parent
c47faa37ab
commit
c992438e3c
1 changed files with 2 additions and 1 deletions
|
|
@ -1340,7 +1340,8 @@ static boolean K_TryDraft(player_t *player, mobj_t *dest, fixed_t minDist, fixed
|
|||
static void K_UpdateDraft(player_t *player)
|
||||
{
|
||||
const boolean addUfo = ((specialstageinfo.valid == true)
|
||||
&& (specialstageinfo.ufo != NULL && P_MobjWasRemoved(specialstageinfo.ufo) == false));
|
||||
&& (specialstageinfo.ufo != NULL && P_MobjWasRemoved(specialstageinfo.ufo) == false)
|
||||
&& specialstageinfo.ufo->health > 1);
|
||||
|
||||
fixed_t topspd = K_GetKartSpeed(player, false, false);
|
||||
fixed_t draftdistance;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue