Merge pull request #3028 from Nordsoft91/fixes

Fix campaign advance crash
This commit is contained in:
Nordsoft91
2023-10-10 23:41:52 +02:00
committed by GitHub
+1 -1
View File
@@ -924,7 +924,7 @@ void CServerHandler::threadHandleConnection()
try
{
sendClientConnecting();
while(c->connected)
while(c && c->connected)
{
while(state == EClientState::STARTING)
boost::this_thread::sleep_for(boost::chrono::milliseconds(10));