diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-06-25 21:47:39 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-07-30 14:39:38 +0800 |
commit | 1dab17bc98123337e80e6a766cdfeeadbded698b (patch) | |
tree | 78b3a786d10532b3d216e66a31144dd02568224f | |
parent | e5a6de86d47d12130afe179303d7de5b78c85bff (diff) | |
download | GT5-Unofficial-1dab17bc98123337e80e6a766cdfeeadbded698b.tar.gz GT5-Unofficial-1dab17bc98123337e80e6a766cdfeeadbded698b.tar.bz2 GT5-Unofficial-1dab17bc98123337e80e6a766cdfeeadbded698b.zip |
fix distillation tower structure
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
-rw-r--r-- | build.properties | 2 | ||||
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/build.properties b/build.properties index e4f67386b8..c9a1e92d05 100644 --- a/build.properties +++ b/build.properties @@ -1,7 +1,7 @@ minecraft.version=1.7.10 forge.version=10.13.4.1614-1.7.10 gt.version=5.09.37.02 -structurelib.version=1.0.2 +structurelib.version=1.0.4 ae2.version=rv3-beta-22 applecore.version=1.7.10-1.2.1+107.59407 buildcraft.version=7.1.11 diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java index bbbaed929a..b35d6e3c56 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java @@ -59,9 +59,7 @@ public class GT_MetaTileEntity_DistillationTower extends GT_MetaTileEntity_Enhan onElementPass(GT_MetaTileEntity_DistillationTower::onCasingFound, ofBlock(GregTech_API.sBlockCasings4, 1)) )) .addElement('c', ofChain( - onElementPass(t -> t.onTopLayerFound(false), ofHatchAdder(GT_MetaTileEntity_DistillationTower::addEnergyInputToMachineList, CASING_INDEX, 1)), onElementPass(t -> t.onTopLayerFound(false), ofHatchAdder(GT_MetaTileEntity_DistillationTower::addOutputToMachineList, CASING_INDEX, 1)), - onElementPass(t -> t.onTopLayerFound(false), ofHatchAdder(GT_MetaTileEntity_DistillationTower::addInputToMachineList, CASING_INDEX, 1)), onElementPass(t -> t.onTopLayerFound(false), ofHatchAdder(GT_MetaTileEntity_DistillationTower::addMaintenanceToMachineList, CASING_INDEX, 1)), onElementPass(t -> t.onTopLayerFound(true), ofBlock(GregTech_API.sBlockCasings4, 1)), isAir() |