Sell for only half price in original difficulty.
This commit is contained in:
parent
9be21cbd3a
commit
5964066969
|
@ -32,7 +32,7 @@ static const char *killMessage[10] = {
|
||||||
"That'll teach you!",
|
"That'll teach you!",
|
||||||
"One more for me!",
|
"One more for me!",
|
||||||
"Target destroyed!",
|
"Target destroyed!",
|
||||||
"You aint so tough!",
|
"You ain't so tough!",
|
||||||
"Kicked your ass!",
|
"Kicked your ass!",
|
||||||
|
|
||||||
"That takes me up to %d",
|
"That takes me up to %d",
|
||||||
|
|
|
@ -1005,7 +1005,12 @@ static void sell(int i)
|
||||||
}
|
}
|
||||||
|
|
||||||
adjustShopPrices();
|
adjustShopPrices();
|
||||||
|
|
||||||
|
if (game.difficulty == DIFFICULTY_ORIGINAL)
|
||||||
|
game.cash += shopItems[i].price / 2;
|
||||||
|
else
|
||||||
game.cash += shopItems[i].price;
|
game.cash += shopItems[i].price;
|
||||||
|
|
||||||
saveGame(0);
|
saveGame(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue