Mark item as collected, so that it doesn't bump objective counter.

This commit is contained in:
Steve 2018-03-04 08:15:30 +00:00
parent a08d52c2fb
commit 9a18d03a39
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ void dropCarriedItems(void)
item->flags &= ~EF_GONE;
item->x = world.bob->checkpoints[0].x;
item->y = world.bob->checkpoints[0].y;
item->collected = 0;
item->collected = 1;
item->canBeCarried = 1;
item->canBePickedUp = 1;