QuickMath/src/main/java/io/gitlab/jfronny/quickmeth/Cfg.java

21 lines
921 B
Java
Raw Normal View History

2020-08-07 11:02:13 +02:00
package io.gitlab.jfronny.quickmeth;
import me.sargunvohra.mcmods.autoconfig1u.ConfigData;
import me.sargunvohra.mcmods.autoconfig1u.annotation.Config;
import me.sargunvohra.mcmods.autoconfig1u.annotation.ConfigEntry.Gui.RequiresRestart;
import me.sargunvohra.mcmods.autoconfig1u.shadowed.blue.endless.jankson.Comment;
@Config(name = "quickmeth")
public class Cfg implements ConfigData {
@Comment("Corrupts methods in MathHelper. This will impact many things but most notably movement")
@RequiresRestart
public boolean corruptGenericMath = true;
@Comment("Corrupts methods in OctavePerlinNoiseSampler and PerlinNoiseSampler. This will mostly impact world generation")
@RequiresRestart
public boolean corruptPerlinNoise = true;
@Comment("Corrupts methods in SimplexNoiseSampler. I am actually not sure what this breaks")
@RequiresRestart
public boolean corruptSimplexNoise = true;
}