diff options
author | Dream-Master <dream-master@gmx.net> | 2016-07-04 17:46:17 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2016-07-04 17:46:17 +0200 |
commit | b99feff3d82d69768459255ae3131e8de3d9ab3f (patch) | |
tree | 73e265fec562719052c3c9cc0e36a2b195a30734 /src/main/java/gregtech/common/tileentities/machines | |
parent | a9039f249a76de55b77ee1015c47eff3b79d456a (diff) | |
download | GT5-Unofficial-b99feff3d82d69768459255ae3131e8de3d9ab3f.tar.gz GT5-Unofficial-b99feff3d82d69768459255ae3131e8de3d9ab3f.tar.bz2 GT5-Unofficial-b99feff3d82d69768459255ae3131e8de3d9ab3f.zip |
make GT trigger ic2 achievements (Blood Asp)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java index 1b9dbc56ae..c6188b97ec 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java @@ -184,7 +184,16 @@ public class GT_MetaTileEntity_ProcessingArray extends GT_MetaTileEntity_MultiBl if (mInventory[1].getUnlocalizedName().endsWith("5")) { tTier = 5; } - + if (mInventory[1].getUnlocalizedName().endsWith("6")) { + tTier = 6; + } + if (mInventory[1].getUnlocalizedName().endsWith("7")) { + tTier = 7; + } + if (mInventory[1].getUnlocalizedName().endsWith("8")) { + tTier = 8; + } + ItemStack[] tInputs = (ItemStack[]) tInputList.toArray(new ItemStack[tInputList.size()]); ArrayList<FluidStack> tFluidList = getStoredFluids(); |