diff options
author | Pxx500 <81298696+Pxx500@users.noreply.github.com> | 2023-09-27 22:28:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 22:28:05 +0200 |
commit | 462cf947238ba066df8edccae119ea38d7ab86d0 (patch) | |
tree | a14c28231521dbb9b626fbb08268480c7d5b3cc3 /src/main/java | |
parent | 26981c9ada4e25ccce5fb50a1956d525c69322b3 (diff) | |
download | GT5-Unofficial-462cf947238ba066df8edccae119ea38d7ab86d0.tar.gz GT5-Unofficial-462cf947238ba066df8edccae119ea38d7ab86d0.tar.bz2 GT5-Unofficial-462cf947238ba066df8edccae119ea38d7ab86d0.zip |
add Very heavy oil recipe to distillation tower (#2308)
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java index e01671781b..f4c5112d8f 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java @@ -602,6 +602,13 @@ public class DistilleryRecipes implements Runnable { .eut(TierEU.RECIPE_MV) .addTo(sDistillationRecipes); + GT_Values.RA.stdBuilder() + .fluidInputs(new FluidStack(ItemList.sOilExtraHeavy, 1000)) + .fluidOutputs(Materials.OilHeavy.getFluid(1500)) + .duration(16 * TICKS) + .eut(2400) + .addTo(sDistillationRecipes); + if (!GregTech_API.mIC2Classic) { GT_Values.RA.stdBuilder() |