diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2015-12-06 07:26:06 +0100 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2015-12-06 07:26:06 +0100 |
commit | ef10c47d76d760656196c9b8fe3a76e581203425 (patch) | |
tree | b195fe1816c9d9d9300334b77a81350eee569651 /src/main/java/gregtech/GT_Mod.java | |
parent | 1ef11f2ae42f8a4cfa0e41faa585c9bba6cddefd (diff) | |
download | GT5-Unofficial-ef10c47d76d760656196c9b8fe3a76e581203425.tar.gz GT5-Unofficial-ef10c47d76d760656196c9b8fe3a76e581203425.tar.bz2 GT5-Unofficial-ef10c47d76d760656196c9b8fe3a76e581203425.zip |
bunch of fixed
Added new multiblock guis
shortend HP turbine name to fit gui
added reinforced block reprocessing
fixed crash on AE2 removal
expanded large boiler tooltips
fixed chinsel marble processing
added some recipes for alloys
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 1cd53f0e56..eedcc37a67 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -229,7 +229,7 @@ public class GT_Mod gregtechproxy.mSortToTheEnd = tMainConfig.get("general", "EnsureToBeLoadedLast", true).getBoolean(true);
gregtechproxy.mDisableIC2Cables = tMainConfig.get("general", "DisableIC2Cables", true).getBoolean(true);
gregtechproxy.mAchievements = tMainConfig.get("general", "EnableAchievements", true).getBoolean(true);
- gregtechproxy.mAE2Integration = tMainConfig.get("general", "EnableAE2Integration", Loader.isModLoaded("appliedenergistics2")).getBoolean(Loader.isModLoaded("appliedenergistics2"));
+ gregtechproxy.mAE2Integration = GregTech_API.sSpecialFile.get(ConfigCategories.general, "EnableAE2Integration", Loader.isModLoaded("appliedenergistics2"));
gregtechproxy.mNervedCombs = tMainConfig.get("general", "NervCombs", true).getBoolean(true);
GregTech_API.mOutputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "OutputRF", true);
|