aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorbotn365 <42187820+botn365@users.noreply.github.com>2020-01-08 21:23:50 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-08 20:23:50 +0000
commit7741006d3ecdfb5a595c48ac4019d7ebbfd6fc4e (patch)
tree4d5f6ed3ea3b87f7d85ac4c1b5cb22cb95309590 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
parent6bb3c6872c97b36c84f32bf730eee31206728c74 (diff)
downloadGT5-Unofficial-7741006d3ecdfb5a595c48ac4019d7ebbfd6fc4e.tar.gz
GT5-Unofficial-7741006d3ecdfb5a595c48ac4019d7ebbfd6fc4e.tar.bz2
GT5-Unofficial-7741006d3ecdfb5a595c48ac4019d7ebbfd6fc4e.zip
$ Fix Large Assembler not accepting correct items in Disassembly mode (#603)
$ Fixes #571 $ Fixes #601
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_AutoCrafter.java5
1 files changed, 4 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 c31a7c0758..f24825ba8a 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
@@ -223,7 +223,10 @@ public class GT4Entity_AutoCrafter extends GregtechMeta_MultiBlockBase {
}
} catch (IllegalArgumentException | IllegalAccessException e) {
}
- }
+ }
+ else if (this.mMachineMode == MODE.DISASSEMBLY) {
+ return null;
+ }
return GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
}