From f2090583670bc9d66a0593065570c791414fdabd Mon Sep 17 00:00:00 2001 From: Layla Marchant Date: Fri, 25 Dec 2020 22:25:40 -0500 Subject: [PATCH] Allow switching to Concentrate mode even with Super Charge in Classic --- src/game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game.c b/src/game.c index e15b73b..7358183 100644 --- a/src/game.c +++ b/src/game.c @@ -1430,7 +1430,8 @@ static void game_doPlayer() if ((engine.keyState[KEY_SWITCH])) { if ((weapons[W_PLAYER_WEAPON].ammo[0] >= 3) - && (weapons[W_PLAYER_WEAPON].ammo[0] <= game.maxPlasmaOutput)) + && ((weapons[W_PLAYER_WEAPON].ammo[0] <= game.maxPlasmaOutput) + || (game.difficulty == DIFFICULTY_ORIGINAL))) { weapons[W_PLAYER_WEAPON].flags ^= WF_SPREAD;