Skip to content

Commit

Permalink
Slightly improve handling of some recipe removals
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Aug 5, 2023
1 parent a6b52bb commit b956cf7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public static void generalChemicals() {
CHEMICAL_RECIPES.recipeBuilder().duration(300).EUt(480)
.input(dust, Gold, 2)
.fluidInputs(HydrochloricAcid.getFluid(8000))
.circuitMeta(1)
.fluidOutputs(GTFOMaterialHandler.ChloroauricAcid.getFluid(2000), Hydrogen.getFluid(3000))
.buildAndRegister();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class VanillinChain {
public static void init() {
GTRecipeHandler.removeRecipesByInputs(RecipeMaps.DISTILLATION_RECIPES, new ItemStack[]{}, new FluidStack[]{Materials.Creosote.getFluid(24)});
RecipeMaps.DISTILLATION_RECIPES.recipeBuilder().EUt(24).duration(32)
RecipeMaps.DISTILLATION_RECIPES.recipeBuilder().EUt(96).duration(16)
.fluidInputs(Materials.Creosote.getFluid(24))
.fluidOutputs(Materials.Lubricant.getFluid(12), GTFOMaterialHandler.Guaiacol.getFluid(1))
.buildAndRegister();
Expand Down

0 comments on commit b956cf7

Please sign in to comment.