From a64660a5b38cdbd44bb98a7939fbfe46dcd96280 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 11 Nov 2025 22:06:27 +0000 Subject: [PATCH] fix #2129 --- CHANGELOG.md | 1 + kubejs/server_scripts/tfg/tags.js | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fadad140e..58aff4bf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - Added an alternative recipe for item frames using cloth @Pyritie - Added a little more silver to surface bismuth veins, moved apatite veins closer to the surface and with deeper indicators, increased deep sapphire veins' max Y level and added a rock type, and also added a rock type to deep magnetite's veins (all overworld only) @Pyritie - Buffed the amount of roof tiles from clay knapping (#2178) @Pyritie +- Added sugar cookies, toasts, jams, pickled eggs, and butter to the meal bag tag, removed banana splits (#2129) @Pyritie ### Bug fixes - Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix - Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 803dd73f1..19fd2b85c 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -293,15 +293,17 @@ const registerTFGItemTags = (event) => { '#tfc:foods/vegetables', '#tfc:foods/fruits', '#tfc:foods/dairy', + '#tfc:foods/preserves', '#firmalife:foods/chocolate', '#tfcchannelcasting:foods/chocolate_sweet', + 'firmalife:food/sugar_cookie', 'firmalife:food/chocolate_chip_cookie', 'firmalife:food/vanilla_ice_cream', 'firmalife:food/strawberry_ice_cream', 'firmalife:food/chocolate_ice_cream', - 'firmalife:food/banana_split', 'tfc:food/cooked_egg', 'tfc:food/boiled_egg', + 'firmalife:food/pickled_egg', 'tfc:food/cooked_rice', 'firmalife:food/cooked_pasta', 'firmalife:food/pasta_with_tomato_sauce', @@ -311,7 +313,11 @@ const registerTFGItemTags = (event) => { 'firmalife:food/salsa', 'firmalife:food/tomato_sauce', 'tfg:roasted_sunflower_seeds', - 'tfg:food/cooked_dino_nugget' + 'tfg:food/cooked_dino_nugget', + 'firmalife:food/toast', + 'firmalife:food/toast_with_butter', + 'firmalife:food/toast_with_jam', + 'firmalife:food/butter' ]; usable_in_meal_bag.forEach(item => { event.add('tfg:foods/usable_in_meal_bag', item);