diff --git a/src/messages.cpp b/src/messages.cpp index 4d630c2..bbd7fa2 100644 --- a/src/messages.cpp +++ b/src/messages.cpp @@ -32,7 +32,7 @@ static const char *killMessage[10] = { "That'll teach you!", "One more for me!", "Target destroyed!", - "You aint so tough!", + "You ain't so tough!", "Kicked your ass!", "That takes me up to %d", diff --git a/src/shop.cpp b/src/shop.cpp index 813ce43..2e63cad 100644 --- a/src/shop.cpp +++ b/src/shop.cpp @@ -1005,7 +1005,12 @@ static void sell(int i) } adjustShopPrices(); - game.cash += shopItems[i].price; + + if (game.difficulty == DIFFICULTY_ORIGINAL) + game.cash += shopItems[i].price / 2; + else + game.cash += shopItems[i].price; + saveGame(0); }