Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

Add NC item to resolve chemical recipe conflict #72

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ private static void naphthalene() {
private static void butyllitium() {
// C4H8O + 2H -> C4H10O
CHEMICAL_RECIPES.recipeBuilder()
.notConsumable(new IntCircuitIngredient(1))
.fluidInputs(Butyraldehyde.getFluid(1000))
.fluidInputs(Hydrogen.getFluid(2000))
.fluidOutputs(Butanol.getFluid(1000))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ public static void init() {

// Separating Agent Production: Di-(2-ethylhexyl)phosphoric Acid

// Aldol Condensation
// 2C4H8O + 4H -> C8H18O + H2O
CHEMICAL_RECIPES.recipeBuilder()
.notConsumable(dust, SodiumHydroxide)
.fluidInputs(Butyraldehyde.getFluid(2000))
.fluidInputs(Hydrogen.getFluid(4000))
.fluidOutputs(Ethylhexanol.getFluid(1000))
Expand Down