fix mushroom conflicting recipes

This commit is contained in:
Pyritie 2025-07-19 19:43:09 +01:00
parent c8ac4fd7fd
commit 0523ff9a02
3 changed files with 8 additions and 7 deletions

View file

@ -174,28 +174,29 @@ const registerGTCEURecipes = (event) => {
event.recipes.gtceu.compressor('plant_ball_from_tfc_seeds')
.itemInputs('8x #tfc:seeds')
.itemOutputs('gtceu:plant_ball')
.circuit(1)
.duration(300)
.EUt(2)
let food = Ingredient.of('#tfc:foods')
.subtract('minecraft:brown_mushroom')
.subtract('minecraft:red_mushroom')
.withCount(8)
event.recipes.gtceu.compressor('plant_ball_from_tfc_food')
.itemInputs('8x #tfc:foods')
.itemInputs(food)
.itemOutputs('gtceu:plant_ball')
.circuit(1)
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_tfc_plants')
.itemInputs('8x #tfc:plants')
.itemOutputs('gtceu:plant_ball')
.circuit(1)
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_tfc_corals')
.itemInputs('8x #tfc:corals')
.itemOutputs('gtceu:plant_ball')
.circuit(1)
.duration(300)
.EUt(2)