forked from GeyserMC/Geyser
GUI: Don't exit if there is a config error (#1600)
Leave the window open so the user understands there is an error. This also changes the exit code to 1 when exiting without a GUI since we have an error.
This commit is contained in:
parent
da2dc69441
commit
0215c383b0
1 changed files with 6 additions and 1 deletions
|
@ -204,7 +204,12 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||
}
|
||||
} catch (IOException ex) {
|
||||
geyserLogger.severe(LanguageUtils.getLocaleStringLog("geyser.config.failed"), ex);
|
||||
System.exit(0);
|
||||
if (gui == null) {
|
||||
System.exit(1);
|
||||
} else {
|
||||
// Leave the process running so the GUI is still visible
|
||||
return;
|
||||
}
|
||||
}
|
||||
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
||||
|
||||
|
|
Loading…
Reference in a new issue