summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)