summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/auctionhandler.cpp5
-rw-r--r--src/net/tmwa/auctionhandler.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp
index e14d0d375..6197c7db8 100644
--- a/src/net/tmwa/auctionhandler.cpp
+++ b/src/net/tmwa/auctionhandler.cpp
@@ -46,4 +46,9 @@ void AuctionHandler::cancelRequest() const
{
}
+void AuctionHandler::setItem(const Item *const item A_UNUSED,
+ const int amount A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h
index c3c624ea4..873d987e3 100644
--- a/src/net/tmwa/auctionhandler.h
+++ b/src/net/tmwa/auctionhandler.h
@@ -38,6 +38,9 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler
void handleMessage(Net::MessageIn &msg) override final;
void cancelRequest() const override final;
+
+ void setItem(const Item *const item,
+ const int amount) const override final;
};
} // namespace TmwAthena