diff options
-rw-r--r-- | src/main.cpp | 2 | ||||
-rw-r--r-- | src/net/net.cpp | 15 | ||||
-rw-r--r-- | src/net/net.h | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 016dfe9e..3c3d3232 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1237,7 +1237,7 @@ int main(int argc, char *argv[]) case STATE_EXIT: logger->log("State: EXIT"); - Net::getGeneralHandler()->unload(); + Net::unload(); break; case STATE_FORCE_QUIT: diff --git a/src/net/net.cpp b/src/net/net.cpp index 50baac73..3b380367 100644 --- a/src/net/net.cpp +++ b/src/net/net.cpp @@ -121,10 +121,9 @@ Net::TradeHandler *Net::getTradeHandler() namespace Net { - ServerInfo::Type networkType = ServerInfo::UNKNOWN; -} // namespace Net +ServerInfo::Type networkType = ServerInfo::UNKNOWN; -void Net::connectToServer(const ServerInfo &server) +void connectToServer(const ServerInfo &server) { // Remove with ifdefs if (networkType != ServerInfo::UNKNOWN) @@ -189,3 +188,13 @@ void Net::connectToServer(const ServerInfo &server) getLoginHandler()->connect(); } + +void unload() { + GeneralHandler *handler = getGeneralHandler(); + if (handler) + { + handler->unload(); + } +} + +} // namespace Net
\ No newline at end of file diff --git a/src/net/net.h b/src/net/net.h index 5e675df7..d6bb7d39 100644 --- a/src/net/net.h +++ b/src/net/net.h @@ -63,6 +63,8 @@ TradeHandler *getTradeHandler(); */ void connectToServer(const ServerInfo &server); +void unload(); + } // namespace Net #endif // NET_H |