From 604b8644b5577112bd86d4c9a27e79b25b3ccd92 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Fri, 6 Mar 2015 16:30:33 -0500 Subject: [PATCH] Give the player full price when selling, not half price. All the half-price penalty does is punish you for upgrading early when it turns out that you need to change weaponry. --- src/shop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shop.cpp b/src/shop.cpp index 659c715..4d6b8c0 100644 --- a/src/shop.cpp +++ b/src/shop.cpp @@ -811,7 +811,7 @@ static void sell(int i) } adjustShopPrices(); - currentGame.cash += (shopItems[i].price / 2); + currentGame.cash += shopItems[i].price; saveGame(0); }