diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-09 18:40:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-09 18:40:26 +0300 |
commit | 66cb4abf50fe7bb07aaedf0488b25825e5c08165 (patch) | |
tree | 41960cb637f602888dc7627a643dfe9e0887532e /src/net/tmwa | |
parent | 23ea6f137e33ba1158ec3e6783fe31435fcffe1f (diff) | |
download | plus-66cb4abf50fe7bb07aaedf0488b25825e5c08165.tar.gz plus-66cb4abf50fe7bb07aaedf0488b25825e5c08165.tar.bz2 plus-66cb4abf50fe7bb07aaedf0488b25825e5c08165.tar.xz plus-66cb4abf50fe7bb07aaedf0488b25825e5c08165.zip |
eathena: add packet CMSG_SEARCHSTORE_NEXT_PAGE 0x0940.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/searchstorehandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/searchstorehandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/searchstorehandler.cpp b/src/net/tmwa/searchstorehandler.cpp index ef70b3d27..9777b32ad 100644 --- a/src/net/tmwa/searchstorehandler.cpp +++ b/src/net/tmwa/searchstorehandler.cpp @@ -54,4 +54,8 @@ void SearchStoreHandler::search(const StoreSearchType::Type type A_UNUSED, { } +void SearchStoreHandler::nextPage() const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/searchstorehandler.h b/src/net/tmwa/searchstorehandler.h index 7750758f5..02a6bad56 100644 --- a/src/net/tmwa/searchstorehandler.h +++ b/src/net/tmwa/searchstorehandler.h @@ -41,6 +41,8 @@ class SearchStoreHandler final : public MessageHandler, const int minPrice, const int maxPrice, const int itemId) const override final; + + void nextPage() const override final; }; } // namespace TmwAthena |