diff options
author | Martin Robertz <dream-master@gmx.net> | 2017-07-03 20:53:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 20:53:01 +0200 |
commit | cf2d50b06239352a03cf08d803c70f30e7542deb (patch) | |
tree | cb0c5a9613c71683e89724ec64d7a48d51f0976f /src/main/java/gregtech/api/interfaces | |
parent | 52eede0a3034212cfb5c5e478a806bd535aa5475 (diff) | |
parent | cbb743856d748150931e6f203436b7553064d6f0 (diff) | |
download | GT5-Unofficial-cf2d50b06239352a03cf08d803c70f30e7542deb.tar.gz GT5-Unofficial-cf2d50b06239352a03cf08d803c70f30e7542deb.tar.bz2 GT5-Unofficial-cf2d50b06239352a03cf08d803c70f30e7542deb.zip |
Merge pull request #27 from Antifluxfield/patch-2
Fix PE recipe
Diffstat (limited to 'src/main/java/gregtech/api/interfaces')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java index 7e6ddd11ec..0cb39f513c 100644 --- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java @@ -113,6 +113,18 @@ public interface IGT_RecipeAdder { /** * Adds a Chemical Recipe + * Only use this when the recipe conflicts in MultiBlock! + * + * @param aInput1 must be != null + * @param aInput2 must be != null + * @param aOutput1 must be != null + * @param aOutput2 must be != null + * @param aDuration must be > 0 + */ + public boolean addChemicalRecipeForBasicMachineOnly(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration, int aEUtick, boolean aCleanroom); + + /** + * Adds a Chemical Recipe * * @param aInput1 must be != null * @param aInput2 must be != null @@ -673,4 +685,4 @@ public interface IGT_RecipeAdder { * @return true if the Sound got added, otherwise false. */ public boolean addSonictronSound(ItemStack aItemStack, String aSoundName); -}
\ No newline at end of file +} |