summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java')
-rw-r--r--src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java b/src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java
new file mode 100644
index 0000000..206fc22
--- /dev/null
+++ b/src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java
@@ -0,0 +1,51 @@
+package com.keuin.ohmyvanillamc;
+
+import carpet.settings.Rule;
+
+import static carpet.settings.RuleCategory.*;
+
+public class OmvmSettings {
+ public static final String OMVM = "OMVM";
+
+ @Rule(
+ desc = "Remove AI of laggy schooling fish (tropical fish, cod)",
+ category = {OMVM, FEATURE, OPTIMIZATION}
+ )
+ public static boolean disableFishSchooling = false;
+
+ @Rule(
+ desc = "Reintroduce item duping with llama on a boat",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean reintroduceLlamaItemDuplicating = false;
+
+ @Rule(
+ desc = "Reintroduce Force Ripening for kelp, twisted vine and weeping vine, See MC-113809",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean enableStemForceRipening = false;
+
+ @Rule(
+ desc = "Reintroduce Force Ripening for bamboo, See MC-113809",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean enableBambooForceRipening = false;
+
+ @Rule(
+ desc = "Reintroduce Force Ripening for cactus, See MC-113809",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean enableCactusForceRipening = false;
+
+ @Rule(
+ desc = "Reintroduce Force Ripening for chorus flower, See MC-113809",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean enableChorusFlowerForceRipening = false;
+
+ @Rule(
+ desc = "Reintroduce Force Ripening for sugar cane, See MC-113809",
+ category = {OMVM, FEATURE, EXPERIMENTAL}
+ )
+ public static boolean enableSugarCaneForceRipening = false;
+}