Fix #598 Delete saved recipe on machine change
This commit is contained in:
parent
5466ac4f52
commit
9ff430c80d
1 changed files with 3 additions and 0 deletions
|
@ -141,6 +141,7 @@ public class GT_MetaTileEntity_ProcessingArray extends GT_MetaTileEntity_MultiBl
|
|||
return aFacing > 1;
|
||||
}
|
||||
|
||||
public String mMachine = "";
|
||||
public boolean checkRecipe(ItemStack aStack) {
|
||||
if (!isCorrectMachinePart(mInventory[1])) {
|
||||
return false;
|
||||
|
@ -176,6 +177,8 @@ public class GT_MetaTileEntity_ProcessingArray extends GT_MetaTileEntity_MultiBl
|
|||
tTier = 8;
|
||||
}
|
||||
|
||||
if(!mMachine.equals(mInventory[1].getUnlocalizedName()))mLastRecipe=null;
|
||||
mMachine = mInventory[1].getUnlocalizedName();
|
||||
ItemStack[] tInputs = (ItemStack[]) tInputList.toArray(new ItemStack[tInputList.size()]);
|
||||
|
||||
ArrayList<FluidStack> tFluidList = getStoredFluids();
|
||||
|
|
Loading…
Reference in a new issue