diff options
Diffstat (limited to 'src/net/net.cpp')
-rw-r--r-- | src/net/net.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/net.cpp b/src/net/net.cpp index aee279a58..79c1bffdd 100644 --- a/src/net/net.cpp +++ b/src/net/net.cpp @@ -54,6 +54,7 @@ Net::BeingHandler *beingHandler = nullptr; Net::BuySellHandler *buySellHandler = nullptr; Net::ServerFeatures *serverFeatures = nullptr; Net::MailHandler *mailHandler = nullptr; +Net::AuctionHandler *auctionHandler = nullptr; Net::AdminHandler *Net::getAdminHandler() { @@ -145,6 +146,11 @@ Net::MailHandler *Net::getMailHandler() return mailHandler; } +Net::AuctionHandler *Net::getAuctionHandler() +{ + return auctionHandler; +} + namespace Net { ServerInfo::Type networkType = ServerInfo::UNKNOWN; |