diff options
author | RIONDY 'POPlol333' Adam <76914762+POPlol333@users.noreply.github.com> | 2023-06-11 13:10:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 13:10:24 +0200 |
commit | d72a3022e1f33a908691e066ad97d49a06af51c3 (patch) | |
tree | 61bf560536374372b09c813326f8697d57900684 /src/main | |
parent | b4e9cbfb4139b9d66cb246fa06f5372f040b7d32 (diff) | |
download | GT5-Unofficial-d72a3022e1f33a908691e066ad97d49a06af51c3.tar.gz GT5-Unofficial-d72a3022e1f33a908691e066ad97d49a06af51c3.tar.bz2 GT5-Unofficial-d72a3022e1f33a908691e066ad97d49a06af51c3.zip |
fix recipe time and tier to adapt to CBD (#2076)
* fix recipe time and tier to adapt to CBD
* changed to ev
* changed to iv
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/ChemicalRecipes.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/ChemicalRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/ChemicalRecipes.java index b0dd5199ab..f58407544e 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/ChemicalRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/ChemicalRecipes.java @@ -5968,8 +5968,8 @@ public class ChemicalRecipes implements Runnable { .fluidOutputs( new FluidStack(FluidRegistry.getFluid("nitrobenzene"), 5000), Materials.DilutedSulfuricAcid.getFluid(3000)) - .duration(8 * TICKS) - .eut(TierEU.RECIPE_ZPM) + .duration(6 * SECONDS) + .eut(TierEU.RECIPE_IV) .addTo(sMultiblockChemicalRecipes); // C13H14N2(HCl) + 2COCl2 = C15H10N2O2(5HCl) |