diff options
author | kuba6000 <kuba.123123.6000@gmail.com> | 2021-09-27 00:42:19 +0200 |
---|---|---|
committer | kuba6000 <kuba.123123.6000@gmail.com> | 2021-09-27 00:42:19 +0200 |
commit | ea2ed554b07371d0d07b823da70d7361787f9112 (patch) | |
tree | a5ae1d324c38398dcd3e9d2e4cd8d7f7822b030c /src/Java | |
parent | bcff60c1705bf8cde0d62c2dba5ccb6ae706bf64 (diff) | |
download | GT5-Unofficial-ea2ed554b07371d0d07b823da70d7361787f9112.tar.gz GT5-Unofficial-ea2ed554b07371d0d07b823da70d7361787f9112.tar.bz2 GT5-Unofficial-ea2ed554b07371d0d07b823da70d7361787f9112.zip |
Fix compilation error & Remove type
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java index fc25a90ae5..5f7b01e4d3 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java @@ -83,7 +83,7 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase { @Override public String getMachineType() { - String sType = "Assembler, Disassembler, "+((CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK && !CORE.GTNH) ? "Circuit Assembler, " : "")+"Autocrafter"; + String sType = "Assembler, Disassembler, "+((CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK && !CORE.GTNH) ? "Circuit Assembler" : ""); return sType; } @@ -422,6 +422,7 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase { private boolean doCrafting(ItemStack aStack) { this.mMaxProgresstime = 0; return false; // do nothing + /* try { // Set Crafting input hatch if (!doesCrafterHave9SlotInput()) { @@ -544,6 +545,7 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase { this.mMaxProgresstime = 0; return false; + */ } @Override |