summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/buy.cpp20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/gui/buy.cpp b/src/gui/buy.cpp
index cc135e07..4a8dae17 100644
--- a/src/gui/buy.cpp
+++ b/src/gui/buy.cpp
@@ -204,8 +204,10 @@ void BuyDialog::action(const gcn::ActionEvent &event)
// Update money and adjust the max number of items that can be bought
mMaxItems -= mAmountItems;
- setMoney(mMoney -
- mAmountItems * mShopItems->at(selectedItem)->getPrice());
+ int price = mShopItems->at(selectedItem)->getPrice();
+ if (price < 0)
+ price = 0;
+ setMoney(mMoney - mAmountItems * price);
// Reset selection
mAmountItems = 1;
@@ -234,12 +236,20 @@ void BuyDialog::updateButtonsAndLabels()
int itemPrice = mShopItems->at(selectedItem)->getPrice();
// Calculate how many the player can afford
- mMaxItems = mMoney / itemPrice;
- if (mAmountItems > mMaxItems)
+ if (itemPrice > 0)
{
- mAmountItems = mMaxItems;
+ mMaxItems = mMoney / itemPrice;
+ }
+ else
+ {
+ // Let the player no more than 1 of them at a time, since it
+ // shouldn't be a permitted case.
+ mMaxItems = 1;
}
+ if (mAmountItems > mMaxItems)
+ mAmountItems = mMaxItems;
+
// Calculate price of pending purchase
price = mAmountItems * itemPrice;
}