From 02303f349b5d90621c313b1a37c9034188d758ab Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 21 Jun 2025 10:57:11 +0100 Subject: [PATCH] fixed recipe conflict with mushroom blocks --- kubejs/server_scripts/gregtech/recipes.js | 4 ++++ kubejs/server_scripts/minecraft/recipes.js | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 927ec9b51..e126e4f7e 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -166,24 +166,28 @@ 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) event.recipes.gtceu.compressor('plant_ball_from_tfc_food') .itemInputs('8x #tfc:foods') .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) diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index 5cfce2d95..263eed3f2 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -1000,6 +1000,7 @@ const registerMinecraftRecipes = (event) => { event.recipes.gtceu.compressor('tfg:red_mushroom') .itemInputs('4x minecraft:red_mushroom') .itemOutputs('minecraft:red_mushroom_block') + .circuit(2) .duration(20) .EUt(GTValues.VA[GTValues.ULV]) @@ -1007,6 +1008,7 @@ const registerMinecraftRecipes = (event) => { .itemInputs('4x minecraft:brown_mushroom') .itemOutputs('minecraft:brown_mushroom_block') .duration(20) + .circuit(2) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.chemical_bath('tfg:red_mushroom_to_shroomlight') @@ -1057,5 +1059,4 @@ const registerMinecraftRecipes = (event) => { .itemOutputs('minecraft:glow_ink_sac') .duration(40) .EUt(GTValues.VA[GTValues.MV]) - }