We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 675f804 commit 5f421b9Copy full SHA for 5f421b9
1 file changed
src/main/java/net/sploder12/potioncraft/Config.java
@@ -25,8 +25,6 @@ public enum FieldID {
25
// Config Fields
26
static HashMap<FieldID, Field> fields = new HashMap<>() {{
27
put(FieldID.DEBUG, new BooleanField(false, "debug", "Debug mode enabled?"));
28
- put(FieldID.ALLOW_MIXING, new BooleanField(true, "allow_mixing", "Should Potion Mixing be Possible?"));
29
- put(FieldID.CAN_USE_REAGENTS, new BooleanField(true, "can_use_reagents", "Should Adding Reagents to Mixtures be Possible?"));
30
put(FieldID.MAX_POTENCY, new IntField(5, "max_potency", "Maximum potency for crafted potions (negative for infinite)."));
31
put(FieldID.DEFAULT_POTION_POTENCY, new IntField(1, "default_potion_potency", "Default potency for vanilla potions."));
32
}};
0 commit comments