Don't decay below 5 spheres (1/2 bar)

This commit is contained in:
AJ Martinez 2024-01-06 05:18:49 -07:00
parent 0529b740d9
commit e8617c8893

View file

@ -8450,7 +8450,8 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
if (player->spheredigestion == 0)
{
player->spheres--;
if (player->spheres > 5)
player->spheres--;
player->spheredigestion = spheredigestion;
}