Posted May 16, 20196 yr I am using the annotations to make a config. The file is made, but when I try to change the file, nothing happens. @Config(modid = PluginInfo.PLUGINID, name = "safari_config", type = Type.INSTANCE) public class GeneralConfig { @Name("General Options") public static General general = new General(); @Name("Safari Bounds") public static SafariBounds bounds = new SafariBounds(); public static class General { public String name = "name"; } public static class SafariBounds { @Name("MaxCoords") @Comment("A list of the maximum coords of a selection") public static List<BlockPos> maxValues = new ArrayList<BlockPos>(); @Name("MinCoords") @Comment("A list of the minimum coords of a selection") public static List<BlockPos> minValues = new ArrayList<BlockPos>(); } public static void addRegion(List<BlockPos> bounds) { List<BlockPos> max = SafariBounds.maxValues; List<BlockPos> min = SafariBounds.minValues; max.add(bounds.get(0)); min.add(bounds.get(1)); SafariBounds.maxValues = max; SafariBounds.minValues = min; } } I am sure that I am doing something wrong, so if you can help me out that would be awesome. -Edit- I have the addRegion() running to change the config and no errors are thrown, but no changes are made. Edited May 16, 20196 yr by Elrol_Arrowsend
May 22, 20196 yr If you change it from the config GUI, does stuff change in the file? 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)
May 24, 20196 yr Author This was going to be for a forge plugin that I am working on, but went with the not annotation based config instead. There wouldnt be a GUI to change it since the clients cant run the mod. Thanks though lol.
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.