summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedja Beader <fedja@protonmail.ch>2025-03-13 00:04:35 +0000
committerFedja Beader <fedja@protonmail.ch>2025-03-13 00:04:35 +0000
commit7bb3daddbfca03366dd51a03d385fdb4f5ec85b7 (patch)
treedf6440a6990c04fa81b53ba745de408077b72bb4
parent69121bb79ec2a4440bed686d2c22e73cc0f12497 (diff)
downloadmv-7bb3daddbfca03366dd51a03d385fdb4f5ec85b7.tar.gz
mv-7bb3daddbfca03366dd51a03d385fdb4f5ec85b7.tar.bz2
mv-7bb3daddbfca03366dd51a03d385fdb4f5ec85b7.tar.xz
mv-7bb3daddbfca03366dd51a03d385fdb4f5ec85b7.zip
Show quantity for item qty 1 in limited stock shops
(no quantity display reserved for unlimited stock shops) Depends on !140 due to merge conflicts. **** mana/plus!141
-rw-r--r--src/resources/item/shopitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/item/shopitem.cpp b/src/resources/item/shopitem.cpp
index 2ed6299cb..efbda00ec 100644
--- a/src/resources/item/shopitem.cpp
+++ b/src/resources/item/shopitem.cpp
@@ -112,7 +112,7 @@ void ShopItem::updateDisplayName(const int quantity)
UnitsDb::formatCurrency(mCurrency, mPrice)).append(") ");
}
- if (mShowQuantity && quantity > 1)
+ if (mShowQuantity && quantity > 0)
mDisplayName.append("[").append(toString(quantity)).append("]");
if (mUsedQuantity > 0)