diff options
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r-- | src/net/ea/buysellhandler.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/net/ea/buysellhandler.cpp b/src/net/ea/buysellhandler.cpp index 537a741ea..7d33492ce 100644 --- a/src/net/ea/buysellhandler.cpp +++ b/src/net/ea/buysellhandler.cpp @@ -65,8 +65,10 @@ void BuySellHandler::requestSellList(const std::string &nick) const return; const std::string data("!selllist " + toString(tick_time)); +// +++ need move to tmwa +#ifdef TMWA_SUPPORT shopWindow->setAcceptPlayer(nick); - +#endif if (config.getBoolValue("hideShopMessages")) { chatHandler->privateMessage(nick, data); @@ -84,7 +86,10 @@ void BuySellHandler::requestBuyList(const std::string &nick) const return; const std::string data("!buylist " + toString(tick_time)); +// +++ need move to tmwa +#ifdef TMWA_SUPPORT shopWindow->setAcceptPlayer(nick); +#endif if (config.getBoolValue("hideShopMessages")) { |