From 2eeff6def1b5039e8589d86090d32e2458c0c9e0 Mon Sep 17 00:00:00 2001 From: TreyR9 <106098556+TreyR9@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:03:51 -0500 Subject: [PATCH] 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> --- kubejs/server_scripts/tfc/recipes.js | 3 +++ kubejs/server_scripts/tfc/recipes.removes.js | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 4539c2c63..720cc8d96 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -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') diff --git a/kubejs/server_scripts/tfc/recipes.removes.js b/kubejs/server_scripts/tfc/recipes.removes.js index 95af557e8..aae1a9790 100644 --- a/kubejs/server_scripts/tfc/recipes.removes.js +++ b/kubejs/server_scripts/tfc/recipes.removes.js @@ -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'}) -} \ No newline at end of file +}