summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java
diff options
context:
space:
mode:
authorMerrg1n <[email protected]>2022-08-13 22:36:35 +0800
committerMerrg1n <[email protected]>2022-08-14 01:42:37 +0800
commit94f092015a05d0179e307468c717ad391e455742 (patch)
tree1e90e0462e8bc2a6d4ae4131808b655089db72a9 /src/main/java/com/keuin/ohmyvanillamc/OmvmSettings.java
parent323226a7956b2dc1d56c56e63bc9354e2b8bd244 (diff)
carpet ext
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;
+}