diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-06 13:22:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-06 13:22:51 +0300 |
commit | 0335e7660cd45d85cbd912510b9d2967bdba553d (patch) | |
tree | 3df589a7c081c67aa7c81a45b5bfc443ca5c9ca5 /src/net/tmwa | |
parent | 3681b42535d541adf6e72b87dbb0865fa3f4aa3a (diff) | |
download | plus-0335e7660cd45d85cbd912510b9d2967bdba553d.tar.gz plus-0335e7660cd45d85cbd912510b9d2967bdba553d.tar.bz2 plus-0335e7660cd45d85cbd912510b9d2967bdba553d.tar.xz plus-0335e7660cd45d85cbd912510b9d2967bdba553d.zip |
eathena: add packet support CMSG_AUCTION_CANCEL_REQUEST 0x024b.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/auctionhandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/auctionhandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp index f4dc0aebf..e14d0d375 100644 --- a/src/net/tmwa/auctionhandler.cpp +++ b/src/net/tmwa/auctionhandler.cpp @@ -42,4 +42,8 @@ void AuctionHandler::handleMessage(Net::MessageIn &msg A_UNUSED) { } +void AuctionHandler::cancelRequest() const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h index 8b36ae772..c3c624ea4 100644 --- a/src/net/tmwa/auctionhandler.h +++ b/src/net/tmwa/auctionhandler.h @@ -36,6 +36,8 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler A_DELETE_COPY(AuctionHandler) void handleMessage(Net::MessageIn &msg) override final; + + void cancelRequest() const override final; }; } // namespace TmwAthena |