diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/protocol.h | 1 | ||||
-rw-r--r-- | src/net/eathena/searchstorehandler.cpp | 5 | ||||
-rw-r--r-- | src/net/eathena/searchstorehandler.h | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index f58f4ff93..20df3a5c0 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -565,5 +565,6 @@ #define CMSG_BUYINGSTORE_SELL 0x0811 #define CMSG_SEARCHSTORE_SEARCH 0x0819 +#define CMSG_SEARCHSTORE_NEXT_PAGE 0x0940 #endif // NET_EATHENA_PROTOCOL_H diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp index 6d6a7e1b8..349bd336e 100644 --- a/src/net/eathena/searchstorehandler.cpp +++ b/src/net/eathena/searchstorehandler.cpp @@ -79,6 +79,11 @@ void SearchStoreHandler::search(const StoreSearchType::Type type, outMsg.writeInt16(itemId, "item id"); } +void SearchStoreHandler::nextPage() const +{ + createOutPacket(CMSG_SEARCHSTORE_NEXT_PAGE); +} + void SearchStoreHandler::processSearchAck(Net::MessageIn &msg) { const int count = (msg.readInt16("len") - 7) / 106; diff --git a/src/net/eathena/searchstorehandler.h b/src/net/eathena/searchstorehandler.h index 8412f17dc..892937e7a 100644 --- a/src/net/eathena/searchstorehandler.h +++ b/src/net/eathena/searchstorehandler.h @@ -42,6 +42,8 @@ class SearchStoreHandler final : public MessageHandler, const int maxPrice, const int itemId) const override final; + void nextPage() const override final; + protected: static void processSearchAck(Net::MessageIn &msg); |