Update IGT_RecipeAdder.java
This commit is contained in:
parent
9fc84fc1e7
commit
8f44019518
1 changed files with 4 additions and 24 deletions
|
@ -98,17 +98,6 @@ public interface IGT_RecipeAdder {
|
|||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, ItemStack aOutput, int aDuration);
|
||||
|
||||
/**
|
||||
|
||||
* Adds a Chemical Recipe
|
||||
*
|
||||
* @param aInput1 must be != null
|
||||
* @param aInput2 must be != null
|
||||
* @param aOutput1 must be != null
|
||||
* @param aDuration must be > 0
|
||||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, ItemStack aOutput, int aDuration, boolean aBasicOnly);
|
||||
|
||||
/**
|
||||
* Adds a Chemical Recipe
|
||||
*
|
||||
|
@ -119,16 +108,6 @@ public interface IGT_RecipeAdder {
|
|||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, int aDuration);
|
||||
|
||||
/**
|
||||
* Adds a Chemical Recipe
|
||||
*
|
||||
* @param aInput1 must be != null
|
||||
* @param aInput2 must be != null
|
||||
* @param aOutput1 must be != null
|
||||
* @param aDuration must be > 0
|
||||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, int aDuration, boolean aBasicOnly);
|
||||
|
||||
/**
|
||||
* Adds a Chemical Recipe
|
||||
*
|
||||
|
@ -139,9 +118,10 @@ public interface IGT_RecipeAdder {
|
|||
* @param aDuration must be > 0
|
||||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration);
|
||||
|
||||
|
||||
/**
|
||||
* Adds a Chemical Recipe
|
||||
* Only use this when the recipe conflicts in MultiBlock!
|
||||
*
|
||||
* @param aInput1 must be != null
|
||||
* @param aInput2 must be != null
|
||||
|
@ -149,8 +129,8 @@ public interface IGT_RecipeAdder {
|
|||
* @param aOutput2 must be != null
|
||||
* @param aDuration must be > 0
|
||||
*/
|
||||
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration, boolean aBasicOnly);
|
||||
|
||||
public boolean addChemicalRecipeForBasicMachineOnly(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration, int aEUtick);
|
||||
|
||||
/**
|
||||
* Adds Recipes for creating a radically polymerized polymer from a base Material (for example Ethylene -> Polyethylene)
|
||||
* @param aBasicMaterial The basic Material
|
||||
|
|
Loading…
Reference in a new issue