diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-23 23:48:38 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-06-24 00:04:23 +0200 |
commit | c15affcf09005f92ea9c250ef23bb0a54bf9ec83 (patch) | |
tree | 49d25898dadd704fc1c1857df40612a30f9ceb3d /src/main/java/gregtech/GT_Mod.java | |
parent | 9c6b943e75e4e797f80743bfe08f1099b9f3e841 (diff) | |
download | GT5-Unofficial-c15affcf09005f92ea9c250ef23bb0a54bf9ec83.tar.gz GT5-Unofficial-c15affcf09005f92ea9c250ef23bb0a54bf9ec83.tar.bz2 GT5-Unofficial-c15affcf09005f92ea9c250ef23bb0a54bf9ec83.zip |
cherry pick
c0c498fb8cec35d35cc5fd2b8524cd5510082a9b
Added Bricked BF config, fixed Primitive BF class hierarchy
Blast Furnace Recipes using Coal or Charcoal now yield Dark Ash instead
of Ash.
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 1c8e8bf6c1..24894c8f4f 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -264,7 +264,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.mReenableSimplifiedChemicalRecipes = tMainConfig.get("general", "ReenableSimplifiedChemicalRecipes", false).getBoolean(false); + gregtechproxy.mReenableSimplifiedChemicalRecipes = tMainConfig.get("general", "ReenableSimplifiedChemicalRecipes", true).getBoolean(false); gregtechproxy.mAMHInteraction = tMainConfig.get("general", "AllowAutoMaintenanceHatchInteraction", false).getBoolean(false); GregTech_API.mOutputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "OutputRF", true); GregTech_API.mInputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "InputRF", false); @@ -273,6 +273,7 @@ public class GT_Mod implements IGT_Mod { GregTech_API.mRFExplosions = GregTech_API.sOPStuff.get(ConfigCategories.general, "RFExplosions", false); GregTech_API.meIOLoaded = Loader.isModLoaded("EnderIO"); gregtechproxy.mForceFreeFace = GregTech_API.sMachineFile.get(ConfigCategories.machineconfig, "forceFreeFace",true); + gregtechproxy.mBrickedBlastFurnace = tMainConfig.get("general", "BrickedBlastFurnace", true).getBoolean(true); GregTech_API.mUseOnlyGoodSolderingMaterials = GregTech_API.sRecipeFile.get(ConfigCategories.Recipes.harderrecipes, "useonlygoodsolderingmaterials", GregTech_API.mUseOnlyGoodSolderingMaterials); gregtechproxy.mChangeHarvestLevels = GregTech_API.sMaterialProperties.get("havestLevel", "activateHarvestLevelChange", false);//TODO CHECK |