Minor cleanup
This commit is contained in:
parent
8f74a61162
commit
ab48a95372
1 changed files with 2 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue