Hot Bread Fixes (#1709)

* Update recipes.removes.js

Remove bread burning recipe

Signed-off-by: TreyR9 <106098556+TreyR9@users.noreply.github.com>

* Update recipes.js

Reintroduce bread burning at a slightly higher temperature to prevent regular logs from burning it

Signed-off-by: TreyR9 <106098556+TreyR9@users.noreply.github.com>

---------

Signed-off-by: TreyR9 <106098556+TreyR9@users.noreply.github.com>
This commit is contained in:
TreyR9 2025-08-26 14:03:51 -05:00 committed by GitHub
parent 75eb0b2106
commit 2eeff6def1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -183,6 +183,9 @@ const registerTFCRecipes = (event) => {
event.recipes.tfc.heating('tfc:plant/winged_kelp', 200)
.resultItem('tfc:food/dried_kelp')
// Burning Bread
event.recipes.tfc.heating('#tfc:foods/breads', 850)
// Soda Ash
event.smelting('3x tfc:powder/soda_ash', 'tfc:food/dried_seaweed').id('tfg:smelting/dried_seaweed_to_soda')
event.smelting('3x tfc:powder/soda_ash', 'tfc:food/dried_kelp').id('tfg:smelting/dried_kelp_to_soda')

View file

@ -153,6 +153,7 @@ function removeTFCRecipes(event) {
event.remove({ id: 'tfc:crafting/alabaster_brick' })
event.remove({ id: /^tfc:crafting\/dough\/.*/ })
event.remove({ id: 'tfc:heating/destroy_bread' })
event.remove({ id: 'tfc:crafting/gunpowder_graphite' })
event.remove({ id: 'tfc:crafting/gunpowder' })
@ -160,4 +161,4 @@ function removeTFCRecipes(event) {
event.remove({ output: 'tfc:rustic_windmill_blade'})
event.remove({ output: 'tfc:lattice_windmill_blade'})
event.remove({ id: 'tfchotornot:heating/insulating_items'})
}
}