Allow switching to Concentrate mode even with Super Charge in Classic

This commit is contained in:
Layla Marchant 2020-12-25 22:25:40 -05:00
parent 6d71317514
commit f209058367
No known key found for this signature in database
GPG Key ID: 52FB5C20A8336782
1 changed files with 2 additions and 1 deletions

View File

@ -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;