From be0e8c0510f76543fdc7df7ccc5e88a279d559b0 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 4 Jan 2026 13:03:05 +0000 Subject: [PATCH] fix #2603 --- CHANGELOG.md | 3 ++- kubejs/server_scripts/tfc/data.js | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7201c1bb..4dd91a947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ - Fixed not being able to use pickled eggs in sandwiches (#2551) @Pyritie - Fixed how much aluminium silicate you get from mica, pollucite, and spodumene to more accurately reflect how much aluminium they have @Pyritie - Fixed being able to put liquid metals into the new molds that didn't have a recipe @Pyritie -- Added some grain nutrition to oatmeal @Pyritie +- Added some grain nutrition to oatmeal (#2469) @Pyritie - Fixed hot-protection chestplates not fully protecting against GT hot ingots (#2598) @Pyritie - Fixed hermetic sandstone's appearance so it looks similar to TFC's raw sandstone @Pyritie - Fixed some issues with the food autostacking changes in a previous version (#2580) @Mqrius @@ -32,6 +32,7 @@ - Fixed some translation inconsistencies in the field guide (#2606, #2607) @jmecn @Petr211071 - Fixed incorrect fluid tooltips for the silica glass bottle and iron flask (#2608) @JeanRdSz @Pyritie - Removed some dough mixing bowl recipes that tried to output more than 5 ingredients because that's the mixing bowl's maximum (#2612) @Pyritie +- Fixed missing heat definition for soybeans (#2603) @Pyritie ### Translation updates - Chinese (simplified) @jmecn - Russian @Petr211071 diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index 5e5386db3..7fe74b566 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -25,6 +25,9 @@ const registerTFCHeats = (event) => { // Baked Potato event.itemHeat('tfc:food/baked_potato', 1.0, null, null) + + // Soybean + event.itemHeat('tfc:food/soybean', 1.0, null, null) }