diff options
Diffstat (limited to 'src/net/eathena/auctionhandler.cpp')
-rw-r--r-- | src/net/eathena/auctionhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/auctionhandler.cpp b/src/net/eathena/auctionhandler.cpp index f390e2aae..45b1e2dbb 100644 --- a/src/net/eathena/auctionhandler.cpp +++ b/src/net/eathena/auctionhandler.cpp @@ -149,4 +149,10 @@ void AuctionHandler::reg(const int currentPrice, outMsg.writeInt32(hours, "delete hour"); } +void AuctionHandler::cancel(const int auctionId) const +{ + createOutPacket(CMSG_AUCTION_CANCEL); + outMsg.writeInt32(auctionId, "auction id"); +} + } // namespace EAthena |