fixed cake #2558
This commit is contained in:
parent
6b184ddf3c
commit
5693767ea6
3 changed files with 23 additions and 6 deletions
10
CHANGELOG.md
10
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue