diff options
author | Techlone <techlone.mc@gmail.com> | 2017-06-01 00:02:13 +0500 |
---|---|---|
committer | Techlone <techlone.mc@gmail.com> | 2017-06-01 00:02:13 +0500 |
commit | 19f70748971c556fa4d1d0dbd930e8d90b413c47 (patch) | |
tree | 51f946bb290a4b8ce448f04f6cbc48d830420950 /src/main/java/gregtech/GT_Mod.java | |
parent | b187410005771f1762f3bb5c94c0c5cd26dd06db (diff) | |
parent | f19e920925aa5c85ec32e7e4b6e17588528eb3e3 (diff) | |
download | GT5-Unofficial-19f70748971c556fa4d1d0dbd930e8d90b413c47.tar.gz GT5-Unofficial-19f70748971c556fa4d1d0dbd930e8d90b413c47.tar.bz2 GT5-Unofficial-19f70748971c556fa4d1d0dbd930e8d90b413c47.zip |
Merge branch 'unstable' into advminer2_improvements
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 7b6c5bafd5..fd208d5dfb 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -258,6 +258,7 @@ public class GT_Mod implements IGT_Mod { Calendar now = Calendar.getInstance();
gregtechproxy.mAprilFool = GregTech_API.sSpecialFile.get(ConfigCategories.general, "AprilFool", now.get(Calendar.MONTH) == Calendar.APRIL && now.get(Calendar.DAY_OF_MONTH) == 1);
gregtechproxy.mCropNeedBlock = tMainConfig.get("general", "CropNeedBlockBelow", true).getBoolean(true);
+ gregtechproxy.mAMHInteraction = tMainConfig.get("general", "AllowAutoMaintenanceHatchInteraction", true).getBoolean(true);
GregTech_API.mOutputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "OutputRF", true);
GregTech_API.mInputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "InputRF", false);
GregTech_API.mEUtoRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "100EUtoRF", 360);
|