diff options
| author | miozune <miozune@gmail.com> | 2023-11-27 17:33:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 17:33:20 +0900 |
| commit | cac64e9c68de494b20203cf1ecf53b4b635c009a (patch) | |
| tree | dbe2febd3a67d46ebfae7e0e3ea269d42bacf420 /src/main/java/gregtech/loaders/preload | |
| parent | 2764b476f0398f468a1352c0ad310e06e03e32df (diff) | |
| download | GT5-Unofficial-cac64e9c68de494b20203cf1ecf53b4b635c009a.tar.gz GT5-Unofficial-cac64e9c68de494b20203cf1ecf53b4b635c009a.tar.bz2 GT5-Unofficial-cac64e9c68de494b20203cf1ecf53b4b635c009a.zip | |
Always enable all material components (#2380)
Diffstat (limited to 'src/main/java/gregtech/loaders/preload')
| -rw-r--r-- | src/main/java/gregtech/loaders/preload/GT_PreLoad.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java index 5208c792c1..2f7ed5ca16 100644 --- a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java +++ b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java @@ -117,8 +117,6 @@ public class GT_PreLoad { new Configuration(new File(new File(configDir, "GregTech"), "WorldGeneration.cfg"))); GregTech_API.sMaterialProperties = new GT_Config( new Configuration(new File(new File(configDir, "GregTech"), "MaterialProperties.cfg"))); - GregTech_API.sMaterialComponents = new GT_Config( - new Configuration(new File(new File(configDir, "GregTech"), "MaterialComponents.cfg"))); GregTech_API.sUnification = new GT_Config( new Configuration(new File(new File(configDir, "GregTech"), "Unification.cfg"))); GregTech_API.sSpecialFile = new GT_Config( @@ -525,8 +523,6 @@ public class GT_PreLoad { .getBoolean(true); GT_Mod.gregtechproxy.mEnableAllMaterials = tMainConfig.get("general", "EnableAllMaterials", false) .getBoolean(false); - GT_Mod.gregtechproxy.mEnableAllComponents = tMainConfig.get("general", "EnableAllComponents", false) - .getBoolean(false); // Pollution: edit GT_Proxy.java to change default values GT_Mod.gregtechproxy.mPollution = tMainConfig |
