Build tether twice as fast in Battle

This commit is contained in:
James R 2022-08-01 17:35:54 -07:00
parent 2d00384a4c
commit 3a23c48be8

View file

@ -1867,6 +1867,13 @@ static void K_UpdateDraft(player_t *player)
// Double speed for the rival!
player->draftpower += add;
}
if (gametype == GT_BATTLE)
{
// TODO: gametyperules
// Double speed in Battle
player->draftpower += add;
}
}
if (player->draftpower > FRACUNIT)