-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathGTFORecipeAddition.java
More file actions
66 lines (62 loc) · 1.98 KB
/
Copy pathGTFORecipeAddition.java
File metadata and controls
66 lines (62 loc) · 1.98 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package gregtechfoodoption.recipe;
import gregtechfoodoption.GTFOConfig;
import gregtechfoodoption.GTFOValues;
import gregtechfoodoption.integration.enderio.GTFOEIORecipeHandler;
import gregtechfoodoption.worldgen.trees.GTFOTree;
import gregtechfoodoption.recipe.chain.*;
import gregtechfoodoption.tools.GTFOToolItems;
import net.minecraftforge.fml.common.Loader;
public class GTFORecipeAddition {
public static void init() {
CoreChain.init();
FatChain.init();
GTFOTree.TREES.forEach(GTFOTree::initRecipes);
GreenhouseChain.init();
MobExtractionChain.init();
SeedsChain.init();
CheeseChain.init();
BananaProcessingChain.init();
MicrowaveChain.init();
GTFOMachineRecipes.init();
GTFOToolItems.registerCustomRecipes();
KebabChain.init();
IceCreamChain.init();
VanillinChain.init();
DyeChain.init();
BritishChain.init();
PotatoProcessingChain.init();
AlcoholChain.init();
PurpleDrinkChain.init();
CapletChain.init();
IVBagChain.init();
ItalianChain.init();
PastaChain.init();
PlateChain.init();
LithiumChain.init();
BerryChain.init();
RussianChain.init();
ChorusChain.init();
SorbetChain.init();
LurdmanineChain.init();
Cholesterolchain.init();
Testosteronechain.init();
Trenchain.init();
Superdrolchain.init();
if (Loader.isModLoaded(GTFOValues.MODID_GCYS)) {
PopcornChain.init();
MineralWaterChain.init();
}
}
public static void lowInit() {
}
public static void compatInit() {
BreadsChain.init();
if (GTFOConfig.gtfoVanillaOverridesConfig.vanillaOverrideChain)
VanillaOverrideChain.init();
CoffeeChain.init();
SmogusChain.init();
if (Loader.isModLoaded(GTFOValues.MODID_EIO)) {
GTFOEIORecipeHandler.enderios();
}
}
}