diff options
author | Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> | 2022-09-24 20:26:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 20:26:56 +0100 |
commit | dd2a737df425d6049f56d0e380db6acb36e6dab9 (patch) | |
tree | 9682646ef57203f8d8eb193764dbfcda0300c9c3 /src | |
parent | 71b0c8852b0149821163f2d191a68b1134009963 (diff) | |
parent | ad812620188d70b41a0b5651305eca3655ebe429 (diff) | |
download | GT5-Unofficial-dd2a737df425d6049f56d0e380db6acb36e6dab9.tar.gz GT5-Unofficial-dd2a737df425d6049f56d0e380db6acb36e6dab9.tar.bz2 GT5-Unofficial-dd2a737df425d6049f56d0e380db6acb36e6dab9.zip |
Merge pull request #99 from minecraft7771/MEInputBusDupeFix
Fix ME Stocking input bus dupe fix for all TT based MBs
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java index 31e7d3e010..bc5cece66c 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java @@ -1143,7 +1143,9 @@ public abstract class GT_MetaTileEntity_MultiblockBase_EM extends GT_MetaTileEnt @Override public final boolean checkRecipe(ItemStack itemStack) { // do recipe checks, based on "machine content and state" hatchesStatusUpdate_EM(); + startRecipeProcessing(); boolean result = checkRecipe_EM(itemStack); // if had no - set default params + endRecipeProcessing(); hatchesStatusUpdate_EM(); return result; } |