From 97496844684785b0adc0f04ccf98b6d7fa247f42 Mon Sep 17 00:00:00 2001 From: Layla Marchant Date: Tue, 26 May 2020 16:33:22 -0400 Subject: [PATCH] Allow grinding in super-easy mode. --- src/collectable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collectable.c b/src/collectable.c index dc4b10e..500a958 100644 --- a/src/collectable.c +++ b/src/collectable.c @@ -203,7 +203,7 @@ void collectable_add(float x, float y, int type, int value, int life) return; } } - else + else if (game.difficulty != DIFFICULTY_SUPEREASY) { // No cash or ammo on interceptions. Completely stops grinding. if ((game.area == MISN_INTERCEPTION)