diff options
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 02c63bf97..761a17d86 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -3260,9 +3260,11 @@ void LocalPlayer::updateStatus() const if (serverFeatures->havePlayerStatusUpdate() && mEnableAdvert) { uint8_t status = 0; - if (mTradebot && shopWindow && !shopWindow->isShopEmpty()) - status |= BeingFlag::SHOP; - + if (!serverFeatures->haveVending()) + { + if (mTradebot && shopWindow && !shopWindow->isShopEmpty()) + status |= BeingFlag::SHOP; + } if (settings.awayMode || settings.pseudoAwayMode) status |= BeingFlag::AWAY; |