You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!internetManager.checkConnection() && config.launch.checkOffline) {
LOGGER.error("Problems with the Internet connection, please check your connection!\n"+
"This could however be a problem with the servers as well.\n"+
"Continuing to download, but this may fail!")
}
First it checks the internet connection, then it checks if it even matters if there is one.
It should just skip checking for an internet connection if the config checkOffline is false. Changing the order of the two conditionals in that if statement will resolve this.
The text was updated successfully, but these errors were encountered:
ServerStarter/src/main/kotlin/atm/bloodworkxgaming/serverstarter/ServerStarter.kt
Lines 153 to 157 in d13247e
First it checks the internet connection, then it checks if it even matters if there is one.
It should just skip checking for an internet connection if the config
checkOffline
is false. Changing the order of the two conditionals in that if statement will resolve this.The text was updated successfully, but these errors were encountered: