-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add superheated steam recipe for isamill
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
15 changes: 14 additions & 1 deletion
15
src/main/java/com/dreammaster/gthandler/recipes/FluidHeaterRecipes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
package com.dreammaster.gthandler.recipes; | ||
import static gregtech.api.util.GTRecipeBuilder.SECONDS; | ||
import static gregtech.api.recipe.RecipeMaps.fluidHeaterRecipes; | ||
|
||
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); | ||
|
||
} | ||
} |