forked from GeyserMC/Geyser
* fix #1110 * updating comments in config.yml * Fix indentation * Centralize localhost retrieval; remove unnecessary Docker check * Add config.yml Co-authored-by: DoctorMacc <toy.fighter1@gmail.com>
This commit is contained in:
parent
1ead2900a3
commit
0e91475c62
8 changed files with 32 additions and 51 deletions
|
@ -108,6 +108,9 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||
try {
|
||||
File configFile = FileUtils.fileOrCopiedFromResource("config.yml", (x) -> x.replaceAll("generateduuid", UUID.randomUUID().toString()));
|
||||
geyserConfig = FileUtils.loadConfig(configFile, GeyserStandaloneConfiguration.class);
|
||||
if (this.geyserConfig.getRemote().getAddress().equalsIgnoreCase("auto")) {
|
||||
geyserConfig.getRemote().setAddress("127.0.0.1");
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
geyserLogger.severe(LanguageUtils.getLocaleStringLog("geyser.config.failed"), ex);
|
||||
System.exit(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue