NaturesAura/src/main/java/de/ellpeck/naturesaura/ModConfig.java

30 lines
995 B
Java
Raw Normal View History

2018-10-22 20:18:54 +02:00
package de.ellpeck.naturesaura;
import net.minecraftforge.common.config.Config;
import net.minecraftforge.common.config.Config.Comment;
import net.minecraftforge.common.config.Config.RangeDouble;
@Config(modid = NaturesAura.MOD_ID, category = "")
public final class ModConfig {
public static General general = new General();
public static Client client = new Client();
public static class General {
2018-10-28 16:21:43 +01:00
@Comment("If using Dragon's Breath in a Brewing Stand should not cause a glass bottle to appear")
public boolean removeDragonBreathContainerItem = true;
2018-10-22 20:18:54 +02:00
}
public static class Client {
2018-10-28 16:21:43 +01:00
@Comment("The percentage of particles that should be displayed, where 1 is 100% and 0 is 0%")
2018-10-22 20:18:54 +02:00
@RangeDouble(min = 0, max = 1)
public double particleAmount = 1;
@Comment("If particle spawning should respect the particle setting in Minecraft's video settings screen")
public boolean respectVanillaParticleSettings = true;
}
}