Skip to content

Commit

Permalink
Add superheated steam recipe to fluid heater (#975)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Robertz <[email protected]>
  • Loading branch information
StaffiX and Dream-Master authored Sep 7, 2024
1 parent e555c91 commit 39be4bf
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
package com.dreammaster.gthandler.recipes;

import static gregtech.api.recipe.RecipeMaps.fluidHeaterRecipes;
import static gregtech.api.util.GTRecipeBuilder.SECONDS;

import gregtech.api.enums.GTValues;
import gregtech.api.enums.TierEU;
import gtPlusPlus.core.util.minecraft.FluidUtils;

public class FluidHeaterRecipes implements Runnable {

@Override
public void run() {}
public void run() {

GTValues.RA.stdBuilder().fluidInputs(FluidUtils.getSteam(3840))
.fluidOutputs(FluidUtils.getSuperHeatedSteam(3840)).duration(5 * SECONDS).eut(TierEU.RECIPE_LuV)
.noOptimize().addTo(fluidHeaterRecipes);

}
}

0 comments on commit 39be4bf

Please sign in to comment.