diff options
| author | GDCloud <93287602+GDCloudstrike@users.noreply.github.com> | 2023-12-06 00:37:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-06 00:37:03 +0100 |
| commit | 1056634daa7ca4fa4a59240f83aea0eb0785b6c4 (patch) | |
| tree | 5cce8e79c228671dd14da6db05801d404f283bb0 /src/main/java | |
| parent | 28f5b4aaa73675fe9e9c8e481f9bcebb6a9871cb (diff) | |
| download | GT5-Unofficial-1056634daa7ca4fa4a59240f83aea0eb0785b6c4.tar.gz GT5-Unofficial-1056634daa7ca4fa4a59240f83aea0eb0785b6c4.tar.bz2 GT5-Unofficial-1056634daa7ca4fa4a59240f83aea0eb0785b6c4.zip | |
fix whitelisted fluids (#265)
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java index 1ef3955a06..ce30d38abd 100644 --- a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java +++ b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java @@ -19,6 +19,7 @@ import com.github.technus.tectech.util.ItemStackLong; import com.google.common.math.LongMath; import gregtech.api.enums.Materials; +import gregtech.api.enums.MaterialsUEVplus; import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GT_OreDictUnificator; import pers.gwyog.gtneioreplugin.plugin.block.BlockDimensionDisplay; @@ -115,7 +116,8 @@ public class EyeOfHarmonyRecipeStorage { outputItems.toArray(new ItemStack[0]), recipe, null, - null, + new FluidStack[] { Materials.Hydrogen.getGas(0), Materials.Helium.getGas(0), + MaterialsUEVplus.RawStarMatter.getFluid(0) }, outputFluids.toArray(new FluidStack[0]), (int) recipe.getRecipeTimeInTicks(), 0, |
