Skip to content

Commit

Permalink
Update LabsTaraniumLine.java
Browse files Browse the repository at this point in the history
Changes Xenic acid breakdown to be stoichiometrically correct. Recipe otherwise gave twice as much oxygen and hydrogen as it should. This change is consistent with acid electrolysis yielding oxygen gas, not H2O2 I made this change in the taranium line in Monifactory. Tell me if change is unwanted.
  • Loading branch information
Jollahs authored Jan 13, 2025
1 parent dda463d commit 882ed2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static void initTaraniumLine() {
XenicAcid = new Material.Builder(102, makeLabsName("xenic_acid"))
.liquid()
.color(0xa567db)
.components(Xenon, 1, Water, 1, Oxygen, 5, HydrogenPeroxide, 1)
.components(Xenon, 1, Water, 1, Oxygen, 3)
.build().setFormula("H2XeO4", true);

DustyHelium = new Material.Builder(103, makeLabsName("dusty_helium"))
Expand Down

0 comments on commit 882ed2c

Please sign in to comment.