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; }