Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions source/uox3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -681,12 +681,6 @@ auto StartInitialize( CServerData &serverdata ) -> void

Console.Log( "-=Server Startup=-\n=======================================================================", "server.log" );

Console << "Creating and Initializing Console Thread ";

cons = std::thread( &CheckConsoleKeyThread );

Console.PrintDone();

// Shows information about IPs and ports being listened on
Console.TurnYellow();

Expand Down Expand Up @@ -782,6 +776,11 @@ auto StartInitialize( CServerData &serverdata ) -> void
}
}

Console << "Creating and Initializing Console Thread ";
Console.Registration();
cons = std::thread( &CheckConsoleKeyThread );
Console.PrintDone();

// Get a second timestamp for startup time
auto startupEndTime = std::chrono::high_resolution_clock::now();

Expand Down Expand Up @@ -1036,7 +1035,6 @@ auto NetworkPollConnectionThread() -> void
auto CheckConsoleKeyThread() -> void
{
messageLoop << "Thread: CheckConsoleThread has started";
Console.Registration();
conThreadCloseOk = false;
while( !conThreadCloseOk )
{
Expand Down
Loading