diff options
author | kuba6000 <kuba.123123.6000@gmail.com> | 2021-09-27 00:32:03 +0200 |
---|---|---|
committer | kuba6000 <kuba.123123.6000@gmail.com> | 2021-09-27 00:32:03 +0200 |
commit | bcff60c1705bf8cde0d62c2dba5ccb6ae706bf64 (patch) | |
tree | 7fd15565ce383610e7656a9a4893fcc60cafcdfe /src/Java | |
parent | f0e20a9fe4d987f0116b72e2e04750e1d191790e (diff) | |
download | GT5-Unofficial-bcff60c1705bf8cde0d62c2dba5ccb6ae706bf64.tar.gz GT5-Unofficial-bcff60c1705bf8cde0d62c2dba5ccb6ae706bf64.tar.bz2 GT5-Unofficial-bcff60c1705bf8cde0d62c2dba5ccb6ae706bf64.zip |
Disable autocrafter
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java | 14 |
1 files changed, 7 insertions, 7 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 dead021a28..fc25a90ae5 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 @@ -133,12 +133,7 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase { "Highly Advanced Autocrafter", "Right Click with a Screwdriver to change mode", "200% faster than using single block machines of the same voltage", - "Processes two items per voltage tier", - "--------------------------------------", - "Insert a Memory stick into the GUI", - "to automate a crafting table recipe", - "Requires recipe to be scanned in a project table", - "--------------------------------------", + "Processes two items per voltage tier", "Size: 3x3x3 (Hollow)", "Autocrafter Frame (10 at least!)", "Controller (Front Center)", @@ -255,7 +250,10 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase { //5.08 support else { if (mMachineMode.nextMode() == MODE.CIRCUIT) { - mMachineMode = MODE.CRAFTING; + mMachineMode = MODE.ASSEMBLY; + } + else if (mMachineMode.nextMode() == MODE.CRAFTING) { + mMachineMode = MODE.ASSEMBLY; } else { mMachineMode = mMachineMode.nextMode(); @@ -422,6 +420,8 @@ 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()) { |