aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGlease <4586901+Glease@users.noreply.github.com>2021-08-22 21:11:26 +0800
committerGitHub <noreply@github.com>2021-08-22 21:11:26 +0800
commitb0232dd8d8ffea794c9111d216ea70651bdb6b7a (patch)
tree837b170b92d1fdf2c20130166bdd2fc7c311c691 /src
parente46ca79a885216fd62220ea8c0f0a12f1636ccfc (diff)
downloadGT5-Unofficial-b0232dd8d8ffea794c9111d216ea70651bdb6b7a.tar.gz
GT5-Unofficial-b0232dd8d8ffea794c9111d216ea70651bdb6b7a.tar.bz2
GT5-Unofficial-b0232dd8d8ffea794c9111d216ea70651bdb6b7a.zip
Actually fix the typo
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gregtech/common/GT_RecipeAdder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java
index 8aed657c91..0799606f50 100644
--- a/src/main/java/gregtech/common/GT_RecipeAdder.java
+++ b/src/main/java/gregtech/common/GT_RecipeAdder.java
@@ -162,7 +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_IntegratedCircuit_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);
}