summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-06 22:12:43 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-06 22:12:43 +0300
commitd12294702a4abd46a3fab0f2ea5b9aa3f8ef824a (patch)
treea3575c872235776e00cc60913a695a1ed580f546 /src/net/tmwa
parent6e3bf9979165b7569ad7a58ec4679f2531e50b90 (diff)
downloadplus-d12294702a4abd46a3fab0f2ea5b9aa3f8ef824a.tar.gz
plus-d12294702a4abd46a3fab0f2ea5b9aa3f8ef824a.tar.bz2
plus-d12294702a4abd46a3fab0f2ea5b9aa3f8ef824a.tar.xz
plus-d12294702a4abd46a3fab0f2ea5b9aa3f8ef824a.zip
eathena: add packet CMSG_AUCTION_SEARCH 0x0251.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/auctionhandler.cpp7
-rw-r--r--src/net/tmwa/auctionhandler.h5
2 files changed, 12 insertions, 0 deletions
diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp
index a52a01b36..2c1dd981f 100644
--- a/src/net/tmwa/auctionhandler.cpp
+++ b/src/net/tmwa/auctionhandler.cpp
@@ -70,4 +70,11 @@ void AuctionHandler::bid(const int auctionId A_UNUSED,
{
}
+void AuctionHandler::search(const AuctionSearchType::Type type A_UNUSED,
+ const int auctionId A_UNUSED,
+ const std::string &text A_UNUSED,
+ const int page A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h
index 4abe9f514..47f942aa8 100644
--- a/src/net/tmwa/auctionhandler.h
+++ b/src/net/tmwa/auctionhandler.h
@@ -52,6 +52,11 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler
void bid(const int auctionId,
const int money) const override final;
+
+ void search(const AuctionSearchType::Type type,
+ const int auctionId,
+ const std::string &text,
+ const int page) const override final;
};
} // namespace TmwAthena