-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 2.7-stargate
- Loading branch information
Showing
7 changed files
with
291 additions
and
417 deletions.
There are no files selected for viewing
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
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
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
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.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); | ||
|
||
} | ||
} |
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
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
Oops, something went wrong.