diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-08-22 21:04:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 21:04:55 +0800 |
commit | e46ca79a885216fd62220ea8c0f0a12f1636ccfc (patch) | |
tree | c50700cef2a8a3c613a2d613dfeb9fc281e7b38c /src | |
parent | f172d60252ac1b95eda343ebc84b1b9b25ef73bf (diff) | |
download | GT5-Unofficial-e46ca79a885216fd62220ea8c0f0a12f1636ccfc.tar.gz GT5-Unofficial-e46ca79a885216fd62220ea8c0f0a12f1636ccfc.tar.bz2 GT5-Unofficial-e46ca79a885216fd62220ea8c0f0a12f1636ccfc.zip |
Fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/GT_RecipeAdder.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java index 22c93e2496..8aed657c91 100644 --- a/src/main/java/gregtech/common/GT_RecipeAdder.java +++ b/src/main/java/gregtech/common/GT_RecipeAdder.java @@ -162,8 +162,7 @@ public class GT_RecipeAdder implements IGT_RecipeAdder { aCleanroom = false; } GT_Recipe.GT_Recipe_Map.sChemicalRecipes.addRecipe(true, new ItemStack[]{aInput1, aInput2}, new ItemStack[]{aOutput, aOutput2}, null, null, new FluidStack[]{aFluidInput}, new FluidStack[]{aFluidOutput}, aDuration, aEUtick, aCleanroom ? -200 : 0); - if (!(aInput1 != null && aInput1.getItem() instanceof GT_Integrated - _Item && aInput1.getItemDamage() >= 10) + if (!(aInput1 != null && aInput1.getItem() instanceof GT_Integrated_Item && aInput1.getItemDamage() >= 10) && !(aInput2 != null && aInput2.getItem() instanceof GT_IntegratedCircuit_Item && aInput2.getItemDamage() >= 10)) { GT_Recipe.GT_Recipe_Map.sMultiblockChemicalRecipes.addRecipe(false, new ItemStack[]{aInput1, aInput2}, new ItemStack[]{aOutput, aOutput2}, null, null, new FluidStack[]{aFluidInput}, new FluidStack[]{aFluidOutput}, aDuration, aEUtick, 0); } |