diff options
| author | Martin Robertz <dream-master@gmx.net> | 2021-11-13 22:03:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-13 22:03:51 +0100 |
| commit | edc0502e2287f82d13cc8f84db481d07ddb1e4f0 (patch) | |
| tree | 2a9638b4ffa1587ffb0b91d9aae49dea8873db11 /src/main/java/gregtech/GT_Mod.java | |
| parent | ac53af71fbb4f0fd4e992138fcc8af3e34191407 (diff) | |
| parent | b0f94478bab78c4a72d79170908178c85448d0d6 (diff) | |
| download | GT5-Unofficial-edc0502e2287f82d13cc8f84db481d07ddb1e4f0.tar.gz GT5-Unofficial-edc0502e2287f82d13cc8f84db481d07ddb1e4f0.tar.bz2 GT5-Unofficial-edc0502e2287f82d13cc8f84db481d07ddb1e4f0.zip | |
Merge pull request #729 from GTNewHorizons/patch-ldp-hax
Require each LDP endpoints to be at least 64 blocks away
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
| -rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 8980483f47..864ef31c8c 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -28,6 +28,7 @@ import gregtech.common.items.GT_MetaGenerated_Tool_01; import gregtech.common.items.behaviors.Behaviour_DataOrb; import gregtech.common.misc.GT_Command; import gregtech.common.tileentities.machines.basic.GT_MetaTileEntity_Massfabricator; +import gregtech.common.tileentities.machines.long_distance.GT_MetaTileEntity_LongDistancePipelineBase; import gregtech.common.tileentities.machines.multi.GT_MetaTileEntity_Cleanroom; import gregtech.common.tileentities.storage.GT_MetaTileEntity_DigitalChestBase; import gregtech.loaders.ExtraIcons; @@ -409,6 +410,7 @@ public class GT_Mod implements IGT_Mod { gregtechproxy.ic2EnergySourceCompat = tMainConfig.get("general", "Ic2EnergySourceCompat", true).getBoolean(true); gregtechproxy.costlyCableConnection = tMainConfig.get("general", "CableConnectionRequiresSolderingMaterial", false).getBoolean(false); GT_LanguageManager.i18nPlaceholder = tMainConfig.get("general", "EnablePlaceholderForMaterialNamesInLangFile", true).getBoolean(true); + GT_MetaTileEntity_LongDistancePipelineBase.minimalDistancePoints = tMainConfig.get("general", "LongDistancePipelineMinimalDistancePoints", 64).getInt(64); 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 |
