fixes #1559
This commit is contained in:
parent
65090aa58e
commit
6f7ad3bf48
2 changed files with 4 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
- Fixed a broken model for the aqueous accumulator. (#1557) @Redeix
|
||||
- Fixed broken recipes for the aqueous accumulator. @Pyritie
|
||||
- Fixed log spam on the moon @Pyritie
|
||||
- Fixed recipe collision with maize flour and cured maize
|
||||
|
||||
## [0.10.7] - 07-08-2025
|
||||
- Fixed an issue with mod dependencies
|
||||
|
|
|
|||
|
|
@ -661,8 +661,8 @@ function registerTFGFoodRecipes(event) {
|
|||
|
||||
processorRecipe("butter", 300, 16, {
|
||||
itemInputs: ["tfc:powder/salt"],
|
||||
itemOutputs: ["firmalife:food/butter"],
|
||||
fluidInputs: [Fluid.of('firmalife:cream', 1000)],
|
||||
itemOutputs: ["firmalife:food/butter"],
|
||||
itemOutputProvider: TFC.isp.of('firmalife:food/butter').resetFood()
|
||||
})
|
||||
|
||||
|
|
@ -740,6 +740,7 @@ function registerTFGFoodRecipes(event) {
|
|||
})
|
||||
|
||||
processorRecipe("cured_maize", 300, 8, {
|
||||
circuit: 1
|
||||
itemInputs: ["tfc:food/maize_grain"],
|
||||
inputFluids: [Fluid.of('tfc:limewater', 100)],
|
||||
itemOutputs: ["firmalife:food/cured_maize"],
|
||||
|
|
@ -747,6 +748,7 @@ function registerTFGFoodRecipes(event) {
|
|||
})
|
||||
|
||||
processorRecipe("soy_mixture", 300, 8, {
|
||||
circuit: 1
|
||||
itemInputs: ["tfc:food/soybean", 'tfc:powder/salt'],
|
||||
fluidInputs: ['#tfg:clean_water 50'],
|
||||
itemOutputs: ["firmalife:food/soy_mixture"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue