Fixed shield bonus being unavailable in Original difficulty.

This commit is contained in:
onpon4 2015-03-28 16:50:20 -04:00
parent 6dd3ac1919
commit 388ffcc9c5
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ void addCollectable(float x, float y, int type, int value, int life)
// Shield bonus is useless in Nightmare difficulty; give cash instead.
if (type == P_SHIELD)
{
if (currentGame.difficulty >= DIFFICULTY_NIGHTMARE)
if (currentGame.difficulty == DIFFICULTY_NIGHTMARE)
{
type = P_CASH;
}