summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shoplistbox.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-11 21:29:51 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-11 21:30:42 +0300
commitc6997f8ee41d5f85dd8a1269e82982e1ab0b5c74 (patch)
treed34c46ef9d3cf927c6b3a0756cfa6d87283773a8 /src/gui/widgets/shoplistbox.cpp
parent540ddb5411378d5e60c942cda230ddf186bdfbc6 (diff)
downloadmv-c6997f8ee41d5f85dd8a1269e82982e1ab0b5c74.tar.gz
mv-c6997f8ee41d5f85dd8a1269e82982e1ab0b5c74.tar.bz2
mv-c6997f8ee41d5f85dd8a1269e82982e1ab0b5c74.tar.xz
mv-c6997f8ee41d5f85dd8a1269e82982e1ab0b5c74.zip
In personal shops in sell dialog shop no existing items with amount 0 and disabled.
Only for legacy servers.
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r--src/gui/widgets/shoplistbox.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index c8f1bd889..6cdf58d2e 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -106,9 +106,10 @@ void ShopListBox::draw(Graphics *graphics)
Color* backgroundColor = &mBackgroundColor;
ShopItem *const item = mShopItems->at(i);
- if (item && ((mShopItems && mPlayerMoney < item->getPrice()
- && mPriceCheck)
- || (mProtectItems && PlayerInfo::isItemProtected(item->getId()))))
+ if (item &&
+ (item->getDisabled() ||
+ (mShopItems && mPlayerMoney < item->getPrice() && mPriceCheck) ||
+ (mProtectItems && PlayerInfo::isItemProtected(item->getId()))))
{
if (i != mSelected)
{