1
0
Fork 0
pull/12647/merge
MuxyDuGoulp 2024-05-12 12:59:12 +02:00 committed by GitHub
commit 9207e4f8c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -936,9 +936,6 @@ bool NetworkServerStart()
/* if the server is dedicated ... add some other script */
if (_network_dedicated) IConsoleCmdExec("exec scripts/on_dedicated.scr 0");
/* welcome possibly still connected admins - this can only happen on a dedicated server. */
if (_network_dedicated) ServerNetworkAdminSocketHandler::WelcomeAll();
return true;
}
@ -969,6 +966,9 @@ void NetworkOnGameStart()
}
ShowClientList();
} else {
/* welcome possibly still connected admins - this can only happen on a dedicated server. */
ServerNetworkAdminSocketHandler::WelcomeAll();
}
}