Max flame shield meter in Battle

This commit is contained in:
James R 2022-05-01 15:37:22 -07:00
parent 39dd77af5e
commit 0c1afe29cb

View file

@ -8985,9 +8985,10 @@ static INT32 K_FlameShieldMax(player_t *player)
disttofinish = players[i].distancetofinish; disttofinish = players[i].distancetofinish;
} }
if (numplayers <= 1) if (numplayers <= 1 || gametype == GT_BATTLE)
{ {
return 16; // max when alone, for testing return 16; // max when alone, for testing
// and when in battle, for chaos
} }
else if (player->position == 1) else if (player->position == 1)
{ {