1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
}
|