diff --git a/src/entities/items/cell.c b/src/entities/items/cell.c index 5162ed8..f844040 100644 --- a/src/entities/items/cell.c +++ b/src/entities/items/cell.c @@ -48,7 +48,7 @@ Entity *initCell(void) static void init(void) { - if (game.isComplete && rand() % 5 > 0) + if (game.isComplete && rand() % 3 > 0) { self->alive = ALIVE_DEAD; } diff --git a/src/entities/items/heart.c b/src/entities/items/heart.c index cd926e9..93d7032 100644 --- a/src/entities/items/heart.c +++ b/src/entities/items/heart.c @@ -50,7 +50,7 @@ Entity *initHeart(Entity *e) static void init(void) { - if (game.isComplete && rand() % 5 > 0) + if (game.isComplete && rand() % 3 > 0) { self->alive = ALIVE_DEAD; }