From 21c33fc85650e8c5107918106841fcbe445027e0 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 13 Nov 2018 18:23:44 +0100 Subject: [PATCH] move the dragon breath config to the features part --- src/main/java/de/ellpeck/naturesaura/ModConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/de/ellpeck/naturesaura/ModConfig.java b/src/main/java/de/ellpeck/naturesaura/ModConfig.java index 832bd44f..cecc7d9d 100644 --- a/src/main/java/de/ellpeck/naturesaura/ModConfig.java +++ b/src/main/java/de/ellpeck/naturesaura/ModConfig.java @@ -14,9 +14,6 @@ public final class ModConfig { public static class General { - @Comment("If using Dragon's Breath in a Brewing Stand should not cause a glass bottle to appear") - public boolean removeDragonBreathContainerItem = true; - @Comment("Additional conversion recipes for the Botanist's Pickaxe right click function. Each entry needs to be formatted as modid:input_block[prop1=value1,...]->modid:output_block[prop1=value1,...] where block state properties are optional") public String[] additionalBotanistPickaxeConversions = new String[0]; @@ -29,6 +26,9 @@ public final class ModConfig { public static class Features { + @Comment("If using Dragon's Breath in a Brewing Stand should not cause a glass bottle to appear") + public boolean removeDragonBreathContainerItem = true; + @Comment("If the Aura Imbalance effect of grass and trees dying in the area if the Aura levels are too low should occur") public boolean grassDieEffect = true; @Comment("If the Aura Imbalance effect of plant growth being boosted if the Aura levels are high enough should occur")