From 9a627a77bb73a0c88bdb02e698df0b915d6ee3c3 Mon Sep 17 00:00:00 2001 From: Layla Marchant Date: Tue, 26 May 2020 20:34:47 -0400 Subject: [PATCH] Fixed double-cargo pods in Ceradse --- src/collectable.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/collectable.c b/src/collectable.c index 500a958..6663f24 100644 --- a/src/collectable.c +++ b/src/collectable.c @@ -154,7 +154,8 @@ void collectable_add(float x, float y, int type, int value, int life) if (value == 0) return; // don't bother! - if (game.difficulty == DIFFICULTY_SUPEREASY) + if ((game.difficulty == DIFFICULTY_SUPEREASY) + && (type != P_CARGO)) value *= 2; // No point in giving the player plasma ammo if the weapons aren't