From 462cf947238ba066df8edccae119ea38d7ab86d0 Mon Sep 17 00:00:00 2001 From: Pxx500 <81298696+Pxx500@users.noreply.github.com> Date: Wed, 27 Sep 2023 22:28:05 +0200 Subject: add Very heavy oil recipe to distillation tower (#2308) --- .../java/gregtech/loaders/postload/recipes/DistilleryRecipes.java | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main/java/gregtech/loaders') 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() -- cgit