Skip to content

Commit

Permalink
Revert "remove unnecessary recipe copying from mixer to blender"
Browse files Browse the repository at this point in the history
This reverts commit af15072
  • Loading branch information
MCTian-mi committed Aug 31, 2024
1 parent bb36550 commit e46fc86
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/main/java/supersymmetry/api/recipes/SuSyRecipeMaps.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import gregtech.api.recipes.builders.PrimitiveRecipeBuilder;
import gregtech.api.recipes.builders.SimpleRecipeBuilder;
import gregtech.api.unification.material.Materials;
import gregtech.api.recipes.ingredients.GTRecipeInput;
import gregtech.core.sound.GTSoundEvents;
import gregtechfoodoption.recipe.GTFORecipeMaps;
import supersymmetry.api.SusyLog;
import supersymmetry.api.gui.SusyGuiTextures;
import supersymmetry.api.recipes.builders.*;

Expand Down Expand Up @@ -355,6 +355,17 @@ public static void init(){
RecipeMaps.LARGE_CHEMICAL_RECIPES.setMaxInputs(4);
RecipeMaps.LARGE_CHEMICAL_RECIPES.setMaxFluidInputs(6);

RecipeMaps.MIXER_RECIPES.onRecipeBuild(recipeBuilder -> SuSyRecipeMaps.BLENDER_RECIPES.recipeBuilder()
.inputs(recipeBuilder.getInputs().toArray(new GTRecipeInput[0]))
.fluidInputs(recipeBuilder.getFluidInputs())
.outputs(recipeBuilder.getOutputs())
.chancedOutputs(recipeBuilder.getChancedOutputs())
.fluidOutputs(recipeBuilder.getFluidOutputs())
.cleanroom(recipeBuilder.getCleanroom())
.duration(recipeBuilder.getDuration())
.EUt(recipeBuilder.getEUt())
.buildAndRegister());

SuSyRecipeMaps.EVAPORATION_POOL.recipeBuilder()
.fluidInputs(Materials.Water.getFluid(1000))
.Jt(300)
Expand Down

0 comments on commit e46fc86

Please sign in to comment.