diff options
author | David Vierra <codewarrior@hawaii.rr.com> | 2018-02-24 06:34:36 -1000 |
---|---|---|
committer | David Vierra <codewarrior@hawaii.rr.com> | 2018-02-24 06:35:07 -1000 |
commit | 1173874f2df8f17468ac17309e153d342a13e76f (patch) | |
tree | a0f5725304fa5c5c206b481c92fc60a87fd595ab | |
parent | 57f1e0d07ae47ac23071105c6fb152431c525cf1 (diff) | |
download | GT5-Unofficial-1173874f2df8f17468ac17309e153d342a13e76f.tar.gz GT5-Unofficial-1173874f2df8f17468ac17309e153d342a13e76f.tar.bz2 GT5-Unofficial-1173874f2df8f17468ac17309e153d342a13e76f.zip |
Fix Cutting Factory not allowing input hatches, and fix gui slot
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialCuttingMachine.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialCuttingMachine.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialCuttingMachine.java index 4b93adad37..28d248d63b 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialCuttingMachine.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialCuttingMachine.java @@ -62,7 +62,7 @@ extends GregtechMeta_MultiBlockBase { @Override public boolean hasSlotInGUI() { - return true; + return false; } @Override @@ -137,8 +137,8 @@ extends GregtechMeta_MultiBlockBase { } } } - if ((this.mOutputHatches.size() != 0) || (this.mInputHatches.size() != 0)) { - Logger.INFO("Use Busses, Not Hatches for Input/Output."); + if ((this.mOutputHatches.size() != 0)) { + Logger.INFO("Use Busses, Not Hatches for Output."); return false; } if ((this.mInputBusses.size() != 2) || (this.mOutputBusses.size() != 2)) { |