summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r--src/gui/windows/shopwindow.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp
index 529b8131e..ca82c03c1 100644
--- a/src/gui/windows/shopwindow.cpp
+++ b/src/gui/windows/shopwindow.cpp
@@ -865,9 +865,11 @@ void ShopWindow::showList(const std::string &nick, std::string data)
void ShopWindow::processRequest(const std::string &nick, std::string data,
const int mode)
{
- if (!localPlayer || !mTradeNick.empty() || PlayerInfo::isTrading()
- || !actorManager
- || !actorManager->findBeingByName(nick, ActorType::Player))
+ if (!localPlayer ||
+ !mTradeNick.empty() ||
+ PlayerInfo::isTrading() == Trading_true ||
+ !actorManager ||
+ !actorManager->findBeingByName(nick, ActorType::Player))
{
return;
}