Fixed shield bonus being unavailable in Original difficulty.
This commit is contained in:
parent
6dd3ac1919
commit
388ffcc9c5
|
@ -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.
|
// Shield bonus is useless in Nightmare difficulty; give cash instead.
|
||||||
if (type == P_SHIELD)
|
if (type == P_SHIELD)
|
||||||
{
|
{
|
||||||
if (currentGame.difficulty >= DIFFICULTY_NIGHTMARE)
|
if (currentGame.difficulty == DIFFICULTY_NIGHTMARE)
|
||||||
{
|
{
|
||||||
type = P_CASH;
|
type = P_CASH;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue