diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-01 18:03:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-01 18:03:03 +0300 |
commit | 582ca3b9024277fa845aa7d5fd180b9c304b3513 (patch) | |
tree | 52356cd3d703c648e4876f800f66aae8b18999eb /src/net/ea/buysellhandler.cpp | |
parent | c735249c6bc90c0e723c42e7c5b1276579609ec9 (diff) | |
download | manaplus-582ca3b9024277fa845aa7d5fd180b9c304b3513.tar.gz manaplus-582ca3b9024277fa845aa7d5fd180b9c304b3513.tar.bz2 manaplus-582ca3b9024277fa845aa7d5fd180b9c304b3513.tar.xz manaplus-582ca3b9024277fa845aa7d5fd180b9c304b3513.zip |
Move requestBuyList from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r-- | src/net/ea/buysellhandler.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/net/ea/buysellhandler.cpp b/src/net/ea/buysellhandler.cpp index e5403b270..990ec8716 100644 --- a/src/net/ea/buysellhandler.cpp +++ b/src/net/ea/buysellhandler.cpp @@ -59,28 +59,6 @@ BuySellHandler::BuySellHandler() mBuyDialog = nullptr; } -void BuySellHandler::requestBuyList(const std::string &nick) const -{ - if (nick.empty() || !shopWindow) - return; - - const std::string data("!buylist " + toString(tick_time)); -// +++ need move to tmwa -#ifdef TMWA_SUPPORT - shopWindow->setAcceptPlayer(nick); -#endif - - if (config.getBoolValue("hideShopMessages")) - { - chatHandler->privateMessage(nick, data); - } - else - { - if (chatWindow) - chatWindow->addWhisper(nick, data, ChatMsgType::BY_PLAYER); - } -} - void BuySellHandler::sendBuyRequest(const std::string &nick, const ShopItem *const item, const int amount) const |