aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-05-06 21:51:07 +0200
committerTechnus <daniel112092@gmail.com>2017-05-06 21:51:07 +0200
commitab48a95372c948ca88dda1759ea290436b6ed829 (patch)
tree0e7ed49baf7b99f9ec3651e127b9e76dd787f21a /src
parent8f74a611629c09a9ce4d9970502c980355595d8f (diff)
downloadGT5-Unofficial-ab48a95372c948ca88dda1759ea290436b6ed829.tar.gz
GT5-Unofficial-ab48a95372c948ca88dda1759ea290436b6ed829.tar.bz2
GT5-Unofficial-ab48a95372c948ca88dda1759ea290436b6ed829.zip
Minor cleanup
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gregtech/common/GT_RecipeAdder.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java
index 26b11f36c1..77b7680761 100644
--- a/src/main/java/gregtech/common/GT_RecipeAdder.java
+++ b/src/main/java/gregtech/common/GT_RecipeAdder.java
@@ -953,7 +953,8 @@ public class GT_RecipeAdder implements IGT_RecipeAdder {
GT_Recipe.GT_Recipe_Map.sCircuitAssemblerRecipes.addRecipe(true, aInputs, new ItemStack[]{aOutput}, null, null, new FluidStack[]{aFluidInput}, null, aDuration, aEUt, 0);
return true;
}
- public boolean addCircuitAssemblerRecipe(ItemStack[] aInputs, FluidStack aFluidInput, ItemStack aOutput, int aDuration, int aEUt, boolean aCleanroom) {
+
+ public boolean addCircuitAssemblerRecipe(ItemStack[] aInputs, FluidStack aFluidInput, ItemStack aOutput, int aDuration, int aEUt, boolean aCleanroom) {
if ((aInputs == null) || (aOutput == null) || aInputs.length>6 || aInputs.length<1) {
return false;
}
@@ -963,8 +964,4 @@ public class GT_RecipeAdder implements IGT_RecipeAdder {
GT_Recipe.GT_Recipe_Map.sCircuitAssemblerRecipes.addRecipe(true, aInputs, new ItemStack[]{aOutput}, null, null, new FluidStack[]{aFluidInput}, null, aDuration, aEUt, aCleanroom ? -200 : 0);
return true;
}
-
-
-
-
}