Villfuk02 Posted January 29, 2020 Posted January 29, 2020 there's a config file in the config folder and another one gets generated in the serverconfig folder of a save, but it has only default values I thought maybe the values from the global config file are supposed to be in the serverconfig too, because the game is using values from the serverconfig, and why even have the global config if that wasn't the case? Main: Config.loadConfig(FMLPaths.CONFIGDIR.get().resolve("qrystal.toml").toString()); ModLoadingContext.get().registerConfig(ModConfig.Type.SERVER, Config.config1, "qrystal.toml"); Config.loadConfig: public static void loadConfig(String path) { final CommentedFileConfig file = CommentedFileConfig.builder(new File(path)).sync().autosave().writingMode(WritingMode.REPLACE).build(); file.load(); config1.setConfig(file); } how do I make the game use the values from the global config? Am I misunderstanding how this works? Quote
Cadiboo Posted January 29, 2020 Posted January 29, 2020 2 hours ago, Villfuk02 said: Am I misunderstanding how this works? Yes. https://github.com/MinecraftForge/MinecraftForge/pull/6464/commits/c8c5de901da70bedb084570d170d46a2c9a1a84d https://cadiboo.github.io/tutorials/1.15.1/forge/3.3-config/ 1 Quote About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
Villfuk02 Posted January 29, 2020 Author Posted January 29, 2020 (edited) Great tutorial, however, I have a couple of questions: What is the specPair thing about? Is there any difference between CLIENT and SERVER configs in terms of setup? Thanks for the reply Edited January 29, 2020 by Villfuk02 Quote
Cadiboo Posted January 30, 2020 Posted January 30, 2020 17 hours ago, Villfuk02 said: Great tutorial, however, I have a couple of questions: What is the specPair thing about? It just lets the method return both the spec and your configured instance. You need the spec for registration & baking checks later and you need the instance for getting/setting values. 17 hours ago, Villfuk02 said: Is there any difference between CLIENT and SERVER configs in terms of setup? If by “setup” you mean “registration”, no. Server config is synced to the client so it needs to be registered on both sides. It is good practice to only register your client config on the client distribution but unless you interact with client-only code in your config (which is unlikely) it’s not necessary. Quote About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
Villfuk02 Posted January 30, 2020 Author Posted January 30, 2020 (edited) Is there a way to store a string array or multiline string? nvm, figued it out Edited January 30, 2020 by Villfuk02 Quote
Cadiboo Posted January 31, 2020 Posted January 31, 2020 14 hours ago, Villfuk02 said: Is there a way to store a string array or multiline string? Use ForgeConfigSpec#defineList. It returns a List<String>. Quote About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.