fix being able to cycle mushroom expiration via mushroom block compression #2518

This commit is contained in:
Pyritie 2025-12-24 21:36:37 +00:00
parent cc5a094f69
commit e03336b779
2 changed files with 3 additions and 15 deletions

View file

@ -22,7 +22,7 @@
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:brown_mushroom_block"
"name": "minecraft:brown_mushroom"
}
],
"conditions": [

View file

@ -945,27 +945,15 @@ const registerMinecraftRecipes = (event) => {
event.shapeless('4x minecraft:brown_mushroom', ['minecraft:brown_mushroom_block', '#forge:tools/knives'])
.id('tfg:shapeless/cut_brown_mushroom_block')
event.recipes.gtceu.compressor('tfg:red_mushroom')
.itemInputs('4x minecraft:red_mushroom')
.itemOutputs('minecraft:red_mushroom_block')
.duration(20)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.compressor('tfg:brown_mushroom')
.itemInputs('4x minecraft:brown_mushroom')
.itemOutputs('minecraft:brown_mushroom_block')
.duration(20)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.chemical_bath('tfg:red_mushroom_to_shroomlight')
.itemInputs('minecraft:red_mushroom_block')
.itemInputs('4x minecraft:red_mushroom')
.inputFluids(Fluid.of('gtceu:glowstone', 144))
.itemOutputs('minecraft:shroomlight')
.duration(200)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.chemical_bath('tfg:brown_mushroom_to_shroomlight')
.itemInputs('minecraft:brown_mushroom_block')
.itemInputs('4x minecraft:brown_mushroom')
.inputFluids(Fluid.of('gtceu:glowstone', 144))
.itemOutputs('minecraft:shroomlight')
.duration(200)