Skip to content

Commit 341fafb

Browse files
authored
Balance chemical titanium recipe (#4228)
1 parent 7f99570 commit 341fafb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/content/Modpacks/Changes/v7.4.0.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ title: "Version 7.4.0"
77

88
## Added NBTPredicateIngredients
99
Added a type of ingredient to do more careful pattern matching on ItemStack NBT data, see [NBT Predicate Ingredient](../Recipes/Ingredients/NBT-Predicate-Ingredients.md).
10+
11+
## Balance sodium_bicarbonate_from_salt recipe
12+
Removed a salt sink in the recipe to produce sodium bicarbonate from salt, see [GTM PR 4228: Balance chemical titanium recipe](https://github.com/GregTechCEu/GregTech-Modern/pull/4228).

src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/TitaniumRecipes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private static void solvayProcess(Consumer<FinishedRecipe> provider) {
7171

7272
// NaCl(H2O) + CO2 + NH3 -> NH4Cl + NaHCO3
7373
CHEMICAL_RECIPES.recipeBuilder("sodium_bicarbonate_from_salt")
74-
.inputItems(dust, Salt, 4)
74+
.inputItems(dust, Salt, 2)
7575
.inputFluids(CarbonDioxide.getFluid(1000))
7676
.inputFluids(Ammonia.getFluid(1000))
7777
.inputFluids(Water.getFluid(1000))

0 commit comments

Comments
 (0)