From 30f142d6a147885afef203cdc83326cccdb4bb75 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 1 Feb 2015 17:03:33 +0300 Subject: eathena: Show shop status on seller. --- src/being/being.cpp | 15 ++++++++++----- src/being/being.h | 3 --- 2 files changed, 10 insertions(+), 8 deletions(-) (limited to 'src/being') diff --git a/src/being/being.cpp b/src/being/being.cpp index 06012f708..170ad3f15 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1891,7 +1891,7 @@ std::string Being::getGenderSign() const else if (getGender() == Gender::MALE) str = "\u2642"; } - if (mShowPlayersStatus && mAdvanced) + if (mShowPlayersStatus) { if (mShop) str.append("$"); @@ -2272,7 +2272,8 @@ bool Being::updateFromCache() if (mAdvanced) { const int flags = entry->getFlags(); - mShop = ((flags & BeingFlag::SHOP) != 0); + if (!serverFeatures->haveVending()) + mShop = ((flags & BeingFlag::SHOP) != 0); mAway = ((flags & BeingFlag::AWAY) != 0); mInactive = ((flags & BeingFlag::INACTIVE) != 0); if (mShop || mAway || mInactive) @@ -2280,7 +2281,8 @@ bool Being::updateFromCache() } else { - mShop = false; + if (!serverFeatures->haveVending()) + mShop = false; mAway = false; mInactive = false; } @@ -2324,7 +2326,7 @@ void Being::addToCache() const if (isAdvanced()) { int flags = 0; - if (mShop) + if (!serverFeatures->haveVending() && mShop) flags += BeingFlag::SHOP; if (mAway) flags += BeingFlag::AWAY; @@ -3039,7 +3041,8 @@ void Being::setState(const uint8_t state) const bool needUpdate = (shop != mShop || away != mAway || inactive != mInactive); - mShop = shop; + if (!serverFeatures->haveVending()) + mShop = shop; mAway = away; mInactive = inactive; updateAwayEffect(); @@ -3530,5 +3533,7 @@ void Being::setChat(ChatObject *const obj) void Being::setBoard(const std::string &text) { + mShop = !text.empty(); mBoard = text; + updateName(); } diff --git a/src/being/being.h b/src/being/being.h index 0f6a81413..6453e272d 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -764,9 +764,6 @@ class Being notfinal : public ActorSprite, bool isShopEnabled() const A_WARN_UNUSED { return mShop; } - void enableShop(const bool b) - { mShop = b; } - /** * Sets the attack range. */ -- cgit v1.2.3-60-g2f50