Reduced the amount of extra money classic difficulty gives.

This commit is contained in:
onpon4 2016-01-03 15:54:26 -05:00
parent 02d0263f56
commit 7677aa24f1
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ static void game_doCollectables()
{
case P_CASH:
if (game.difficulty == DIFFICULTY_ORIGINAL)
collectable->value *= 2;
collectable->value = collectable->value * 3 / 2;
game.cash += collectable->value;
game.cashEarned += collectable->value;