Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit 1941018

Browse files
authored
Fix broken gas in 2 recipes (#830)
* its gas not fluid * sa
1 parent 49c8725 commit 1941018

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private static void chemplantRecipes() {
135135
// Advanced method for Nitric Acid Production
136136
CORE.RA.addChemicalPlantRecipe(
137137
new ItemStack[] { CI.getNumberedAdvancedCircuit(17), CI.getPinkCatalyst(0), },
138-
new FluidStack[] { Materials.NitrogenDioxide.getFluid(4000L), FluidUtils.getAir(4000),
138+
new FluidStack[] { Materials.NitrogenDioxide.getGas(4000L), FluidUtils.getAir(4000),
139139
FluidUtils.getWater(2000), },
140140
new ItemStack[] {},
141141
new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 4000), },
@@ -173,10 +173,9 @@ private static void chemplantRecipes() {
173173
// 3NO2 + H2O = 2HNO3 + NO
174174
CORE.RA.addChemicalPlantRecipe(
175175
new ItemStack[] { CI.getNumberedAdvancedCircuit(16), CI.getPinkCatalyst(0), },
176-
new FluidStack[] { Materials.NitrogenDioxide.getFluid(3000L), FluidUtils.getDistilledWater(1000) },
176+
new FluidStack[] { Materials.NitrogenDioxide.getGas(3000L), FluidUtils.getDistilledWater(1000) },
177177
new ItemStack[] {},
178-
new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 2000),
179-
Materials.NitricOxide.getFluid(1000L), },
178+
new FluidStack[] { FluidUtils.getFluidStack("nitricacid", 2000), Materials.NitricOxide.getGas(1000L), },
180179
10 * 20,
181180
480,
182181
2);

0 commit comments

Comments
 (0)