summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/auctionhandler.cpp4
-rw-r--r--src/net/tmwa/auctionhandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp
index fe67264ac..2909881f5 100644
--- a/src/net/tmwa/auctionhandler.cpp
+++ b/src/net/tmwa/auctionhandler.cpp
@@ -61,4 +61,8 @@ void AuctionHandler::cancel(const int auctionId A_UNUSED) const
{
}
+void AuctionHandler::close(const int auctionId A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h
index 0ccba887b..f36c07fa8 100644
--- a/src/net/tmwa/auctionhandler.h
+++ b/src/net/tmwa/auctionhandler.h
@@ -47,6 +47,8 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler
const int hours) const override final;
void cancel(const int auctionId) const override final;
+
+ void close(const int auctionId) const override final;
};
} // namespace TmwAthena