diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-09 18:53:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-09 18:53:28 +0300 |
commit | 020e34363763d9cd0d691ae3b3da1ead52defa4e (patch) | |
tree | f5a01d094696c5652a97f87a1b8cc8e8640939ed /src/net/eathena/searchstorehandler.cpp | |
parent | 43db029011d22270f4b0a6d94a13a7dca24291c3 (diff) | |
download | plus-020e34363763d9cd0d691ae3b3da1ead52defa4e.tar.gz plus-020e34363763d9cd0d691ae3b3da1ead52defa4e.tar.bz2 plus-020e34363763d9cd0d691ae3b3da1ead52defa4e.tar.xz plus-020e34363763d9cd0d691ae3b3da1ead52defa4e.zip |
eathena: add packet CMSG_SEARCHSTORE_CLOSE 0x083b.
Diffstat (limited to 'src/net/eathena/searchstorehandler.cpp')
-rw-r--r-- | src/net/eathena/searchstorehandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp index 8288dc0ab..fdea20615 100644 --- a/src/net/eathena/searchstorehandler.cpp +++ b/src/net/eathena/searchstorehandler.cpp @@ -89,6 +89,11 @@ void SearchStoreHandler::nextPage() const createOutPacket(CMSG_SEARCHSTORE_NEXT_PAGE); } +void SearchStoreHandler::close() const +{ + createOutPacket(CMSG_SEARCHSTORE_CLOSE); +} + void SearchStoreHandler::processSearchAck(Net::MessageIn &msg) { const int count = (msg.readInt16("len") - 7) / 106; |