summaryrefslogtreecommitdiff
path: root/src/net/eathena/buyingstorehandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/buyingstorehandler.cpp')
-rw-r--r--src/net/eathena/buyingstorehandler.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/buyingstorehandler.cpp b/src/net/eathena/buyingstorehandler.cpp
index 29d6c86c5..519c30aae 100644
--- a/src/net/eathena/buyingstorehandler.cpp
+++ b/src/net/eathena/buyingstorehandler.cpp
@@ -45,6 +45,7 @@ BuyingStoreHandler::BuyingStoreHandler() :
SMSG_BUYINGSTORE_OPEN,
SMSG_BUYINGSTORE_CREATE_FAILED,
SMSG_BUYINGSTORE_OWN_ITEMS,
+ SMSG_BUYINGSTORE_SHOW_BOARD,
0
};
handledMessages = _messages;
@@ -67,6 +68,10 @@ void BuyingStoreHandler::handleMessage(Net::MessageIn &msg)
processBuyingStoreOwnItems(msg);
break;
+ case SMSG_BUYINGSTORE_SHOW_BOARD:
+ processBuyingStoreShowBoard(msg);
+ break;
+
default:
break;
}
@@ -113,6 +118,12 @@ void BuyingStoreHandler::processBuyingStoreOwnItems(Net::MessageIn &msg)
}
}
+void BuyingStoreHandler::processBuyingStoreShowBoard(Net::MessageIn &msg)
+{
+ msg.readInt32("account id");
+ msg.readString(80, "board name");
+}
+
void BuyingStoreHandler::create(const std::string &name,
const int maxMoney,
const bool flag,