diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-01-22 17:01:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 17:01:27 +0000 |
commit | 194101811ee8637ebd6162508b988833fb096b87 (patch) | |
tree | 2fb0651c8b126be64eea642b1169612af6f188b0 | |
parent | 49c87250d78ccdd0291d542da48ad8a47dde4270 (diff) | |
download | GT5-Unofficial-194101811ee8637ebd6162508b988833fb096b87.tar.gz GT5-Unofficial-194101811ee8637ebd6162508b988833fb096b87.tar.bz2 GT5-Unofficial-194101811ee8637ebd6162508b988833fb096b87.zip |
Fix broken gas in 2 recipes (#830)
* its gas not fluid
* sa
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index ffe2d5be64..7d30cba8f0 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -135,7 +135,7 @@ public class RECIPES_GREGTECH { // Advanced method for Nitric Acid Production CORE.RA.addChemicalPlantRecipe( new ItemStack[] { CI.getNumberedAdvancedCircuit(17), CI.getPinkCatalyst(0), }, - new FluidStack[] { Materials.NitrogenDioxide.getFluid(4000L), FluidUtils.getAir(4000), + new FluidStack[] { Materials.NitrogenDioxide.getGas(4000L), FluidUtils.getAir(4000), FluidUtils.getWater(2000), }, new ItemStack[] {}, new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 4000), }, @@ -173,10 +173,9 @@ public class RECIPES_GREGTECH { // 3NO2 + H2O = 2HNO3 + NO CORE.RA.addChemicalPlantRecipe( new ItemStack[] { CI.getNumberedAdvancedCircuit(16), CI.getPinkCatalyst(0), }, - new FluidStack[] { Materials.NitrogenDioxide.getFluid(3000L), FluidUtils.getDistilledWater(1000) }, + new FluidStack[] { Materials.NitrogenDioxide.getGas(3000L), FluidUtils.getDistilledWater(1000) }, new ItemStack[] {}, - new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 2000), - Materials.NitricOxide.getFluid(1000L), }, + new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 2000), Materials.NitricOxide.getGas(1000L), }, 10 * 20, 480, 2); |