Only inc objective count if not already dead.

This commit is contained in:
Steve 2018-03-24 16:57:48 +00:00
parent 22f42294a8
commit 30103bde5c
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ static void action(void)
throwDebris(s->x + s->w / 2, s->y + s->h / 2, 1);
}
if (s->health <= -50)
if (s->health <= -50 && s->alive != ALIVE_DEAD)
{
dropCarriedItem();