diff --git a/CHANGELOG.md b/CHANGELOG.md index c503b3b72..73318c5e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,17 @@ ### Changes - change energy acceptor to use a machine hull instead of a converter. (#2553) @thederpysockdude123 - Update ExtendedAE package name in InvTweaks exclusions. (#2556) @FakeDomi +- Pickled eggs can now be used in sandwiches (#2551) @Pyritie +### Mod updates +- New [Greate changelog](https://github.com/GreateBeyondTheHorizon/Greate/releases/tag/0.0.59) +- New [Firmalife changelog](https://github.com/eerussianguy/firmalife/releases/tag/v2.1.25) ### Bug fixes +- Fixed cake recipes returning nothing in a food processor (#2558) @Pyritie +- Fixed a crash when generating chunks sometimes @Satherov +### Translation updates +- Chinese (simplified) @jmecn +- Chinese (traditional) @CrazyO9 +- Russian @Petr211071 ## [0.11.13] - 28-12-2025 ### Breaking Changes diff --git a/kubejs/server_scripts/tfg/food/recipes.food.js b/kubejs/server_scripts/tfg/food/recipes.food.js index 1210e0ab4..a592c4cfb 100644 --- a/kubejs/server_scripts/tfg/food/recipes.food.js +++ b/kubejs/server_scripts/tfg/food/recipes.food.js @@ -970,37 +970,43 @@ function registerTFGFoodRecipes(event) { processorRecipe("vanilla_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/strawberry', 'firmalife:spice/vanilla'], fluidInputs: [Fluid.of("tfcchannelcasting:white_chocolate", 400)], - itemOutputs: ["tfc:cake"] + itemOutputs: ["tfc:cake"], + itemOutputProvider: TFC.isp.of("tfc:cake").copyOldestFood() }) processorRecipe("milk_chocolate_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/cherry', 'firmalife:food/cocoa_powder'], fluidInputs: [Fluid.of("tfcchannelcasting:milk_chocolate", 400)], - itemOutputs: ["createaddition:chocolate_cake"] + itemOutputs: ["createaddition:chocolate_cake"], + itemOutputProvider: TFC.isp.of("createaddition:chocolate_cake").copyOldestFood() }) processorRecipe("dark_chocolate_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/cherry', 'firmalife:food/cocoa_powder'], fluidInputs: [Fluid.of("tfcchannelcasting:dark_chocolate", 400)], - itemOutputs: ["createaddition:chocolate_cake"] + itemOutputs: ["createaddition:chocolate_cake"], + itemOutputProvider: TFC.isp.of("createaddition:chocolate_cake").copyOldestFood() }) processorRecipe("maple_honey_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '4x firmalife:raw_honey'], fluidInputs: [Fluid.of("afc:maple_syrup", 1000)], - itemOutputs: ["createaddition:honey_cake"] + itemOutputs: ["createaddition:honey_cake"], + itemOutputProvider: TFC.isp.of("createaddition:honey_cake").copyOldestFood() }) processorRecipe("birch_honey_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '4x firmalife:raw_honey'], fluidInputs: [Fluid.of("afc:birch_syrup", 1000)], - itemOutputs: ["createaddition:honey_cake"] + itemOutputs: ["createaddition:honey_cake"], + itemOutputProvider: TFC.isp.of("createaddition:honey_cake").copyOldestFood() }) processorRecipe("birtday_cake", 300, GTValues.VA[GTValues.HV], { itemInputs: ['createaddition:cake_base', '4x species:birt_egg', '4x tfc:food/blueberry', '2x minecraft:chorus_fruit', 'gtceu:blue_alloy_single_wire'], fluidInputs: [Fluid.of('gtceu:helium_3', 50)], - itemOutputs: ["species:birtday_cake"] + itemOutputs: ["species:birtday_cake"], + itemOutputProvider: TFC.isp.of("species:birtday_cake").copyOldestFood() }) //#endregion diff --git a/kubejs/server_scripts/tfg/food/tags.food.js b/kubejs/server_scripts/tfg/food/tags.food.js index 5e935fce4..c4bc0ca81 100644 --- a/kubejs/server_scripts/tfg/food/tags.food.js +++ b/kubejs/server_scripts/tfg/food/tags.food.js @@ -315,6 +315,7 @@ function registerTFGFoodItemTags(event) { event.add("tfc:foods/usable_in_jam_sandwich", "tfc:food/boiled_egg"); event.add("tfc:foods/usable_in_sandwich", "tfc:food/cooked_egg"); event.add("tfc:foods/usable_in_sandwich", "tfc:food/boiled_egg"); + event.add("tfc:foods/usable_in_sandwich", "tfc:food/pickled_egg"); event.add('tfc:foods/usable_in_salad', 'minecraft:red_mushroom') event.add('tfc:foods/usable_in_salad', 'minecraft:brown_mushroom')