Jump to content

[1.12.2] Unable to add to the config.


Elrol_Arrowsend

Recommended Posts

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 by Elrol_Arrowsend
Link to comment
Share on other sites

If you change it from the config GUI, does stuff change in the file?

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.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)

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.