Skip to content

Commit

Permalink
fix polymer recipes (#1922)
Browse files Browse the repository at this point in the history
  • Loading branch information
chochem authored Apr 25, 2023
1 parent f9f9d66 commit 24bb11e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3998,7 +3998,7 @@ public void addDefaultPolymerizationRecipes(Fluid aBasicMaterial, ItemStack aBas
.fluidOutputs(new GT_FluidStack(aPolymer, 144))
.duration(8 * SECONDS)
.eut(TierEU.RECIPE_LV)
.addTo(sChemicalRecipes);
.addTo(UniversalChemical);

GT_Values.RA.stdBuilder()
.itemInputs(Materials.Oxygen.getCells(1), GT_Utility.getIntegratedCircuit(1))
Expand All @@ -4007,7 +4007,7 @@ public void addDefaultPolymerizationRecipes(Fluid aBasicMaterial, ItemStack aBas
.fluidOutputs(new GT_FluidStack(aPolymer, 216))
.duration(8 * SECONDS)
.eut(TierEU.RECIPE_LV)
.addTo(sChemicalRecipes);
.addTo(UniversalChemical);

GT_Values.RA.stdBuilder()
.itemInputs(aBasicMaterialCell, GT_Utility.getIntegratedCircuit(1))
Expand All @@ -4016,7 +4016,7 @@ public void addDefaultPolymerizationRecipes(Fluid aBasicMaterial, ItemStack aBas
.fluidOutputs(new GT_FluidStack(aPolymer, 1000))
.duration(56 * SECONDS)
.eut(TierEU.RECIPE_LV)
.addTo(sChemicalRecipes);
.addTo(UniversalChemical);

GT_Values.RA.stdBuilder()
.itemInputs(aBasicMaterialCell, GT_Utility.getIntegratedCircuit(1))
Expand All @@ -4025,7 +4025,7 @@ public void addDefaultPolymerizationRecipes(Fluid aBasicMaterial, ItemStack aBas
.fluidOutputs(new GT_FluidStack(aPolymer, 1500))
.duration(56 * SECONDS)
.eut(TierEU.RECIPE_LV)
.addTo(sChemicalRecipes);
.addTo(UniversalChemical);

GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.getIntegratedCircuit(2))
Expand Down

0 comments on commit 24bb11e

Please sign in to comment.