diff options
Diffstat (limited to 'src/net/eathena/buyingstorehandler.cpp')
-rw-r--r-- | src/net/eathena/buyingstorehandler.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/buyingstorehandler.cpp b/src/net/eathena/buyingstorehandler.cpp index 7801fb5f4..efcdc6d0c 100644 --- a/src/net/eathena/buyingstorehandler.cpp +++ b/src/net/eathena/buyingstorehandler.cpp @@ -46,6 +46,7 @@ BuyingStoreHandler::BuyingStoreHandler() : SMSG_BUYINGSTORE_CREATE_FAILED, SMSG_BUYINGSTORE_OWN_ITEMS, SMSG_BUYINGSTORE_SHOW_BOARD, + SMSG_BUYINGSTORE_HIDE_BOARD, 0 }; handledMessages = _messages; @@ -72,6 +73,10 @@ void BuyingStoreHandler::handleMessage(Net::MessageIn &msg) processBuyingStoreShowBoard(msg); break; + case SMSG_BUYINGSTORE_HIDE_BOARD: + processBuyingStoreHideBoard(msg); + break; + default: break; } @@ -124,6 +129,11 @@ void BuyingStoreHandler::processBuyingStoreShowBoard(Net::MessageIn &msg) msg.readString(80, "board name"); } +void BuyingStoreHandler::processBuyingStoreHideBoard(Net::MessageIn &msg) +{ + msg.readInt32("account id"); +} + void BuyingStoreHandler::create(const std::string &name, const int maxMoney, const bool flag, |