aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces
diff options
context:
space:
mode:
authorAntifluxfield <lyj_299792458@163.com>2017-07-04 02:27:57 +0800
committerGitHub <noreply@github.com>2017-07-04 02:27:57 +0800
commit7b0d088b5559e4e8dbfd56bee2901a7a92ee3cbf (patch)
tree57c20ed80442c26e3237d7074ea1bbadf0b383ea /src/main/java/gregtech/api/interfaces
parent52eede0a3034212cfb5c5e478a806bd535aa5475 (diff)
downloadGT5-Unofficial-7b0d088b5559e4e8dbfd56bee2901a7a92ee3cbf.tar.gz
GT5-Unofficial-7b0d088b5559e4e8dbfd56bee2901a7a92ee3cbf.tar.bz2
GT5-Unofficial-7b0d088b5559e4e8dbfd56bee2901a7a92ee3cbf.zip
Update IGT_RecipeAdder.java
Diffstat (limited to 'src/main/java/gregtech/api/interfaces')
-rw-r--r--src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java14
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
+}