aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-06-07 22:14:53 +0100
committerGitHub <noreply@github.com>2023-06-07 23:14:53 +0200
commit2ae49a1fbc8eee056b9f7de127fc6d8fe72ee5ab (patch)
treebe5b1992e9aa564446dbff303ec3a19bfbb21cff /src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java
parent811e15ab0c615f01aec31c7dcc385ccb9d3ba377 (diff)
downloadGT5-Unofficial-2ae49a1fbc8eee056b9f7de127fc6d8fe72ee5ab.tar.gz
GT5-Unofficial-2ae49a1fbc8eee056b9f7de127fc6d8fe72ee5ab.tar.bz2
GT5-Unofficial-2ae49a1fbc8eee056b9f7de127fc6d8fe72ee5ab.zip
fix biomass recipes (#2068)
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java
index d474cc5ffa..7dfbad860d 100644
--- a/src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java
+++ b/src/main/java/gregtech/loaders/postload/recipes/PyrolyseRecipes.java
@@ -111,7 +111,7 @@ public class PyrolyseRecipes implements Runnable {
.addTo(sPyrolyseRecipes);
GT_Values.RA.stdBuilder()
- .noItemInputs()
+ .itemInputs(GT_Utility.getIntegratedCircuit(2))
.noItemOutputs()
.fluidInputs(new FluidStack(FluidRegistry.getFluid("ic2biomass"), 1000))
.fluidOutputs(Materials.FermentedBiomass.getFluid(1000))
@@ -120,7 +120,7 @@ public class PyrolyseRecipes implements Runnable {
.addTo(sPyrolyseRecipes);
GT_Values.RA.stdBuilder()
- .noItemInputs()
+ .itemInputs(GT_Utility.getIntegratedCircuit(2))
.noItemOutputs()
.fluidInputs(Materials.Biomass.getFluid(1000))
.fluidOutputs(Materials.FermentedBiomass.getFluid(1000))