fixes #1162
This commit is contained in:
parent
6a6f72829a
commit
712f8a33c7
3 changed files with 9 additions and 9 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fixed double ingots not having a temperature (#1165) @Pyritie
|
- Fixed double ingots not having a temperature (#1165) @Pyritie
|
||||||
### Changes
|
### Changes
|
||||||
|
- Changed pineapple yarn recipe from assembler to wiremill & coiling machine, like the other strings (#1162) @Pyritie
|
||||||
|
|
||||||
## [0.9.11] - 13.06.2025
|
## [0.9.11] - 13.06.2025
|
||||||
### New features
|
### New features
|
||||||
|
|
|
||||||
|
|
@ -95,16 +95,8 @@ const registerFirmaLifeRecipes = (event) => {
|
||||||
.duration(50)
|
.duration(50)
|
||||||
.EUt(2)
|
.EUt(2)
|
||||||
|
|
||||||
// Pineapple Fiber
|
|
||||||
event.recipes.gtceu.assembler(`tfg:firmalife/pineapple_fiber`)
|
|
||||||
.itemInputs('firmalife:food/pineapple')
|
|
||||||
.circuit(1)
|
|
||||||
.itemOutputs('firmalife:pineapple_fiber')
|
|
||||||
.duration(50)
|
|
||||||
.EUt(7)
|
|
||||||
|
|
||||||
// Pineapple Yarn
|
// Pineapple Yarn
|
||||||
event.recipes.gtceu.assembler(`tfg:firmalife/pineapple_yarn`)
|
event.recipes.gtceu.wiremill(`tfg:firmalife/pineapple_yarn`)
|
||||||
.itemInputs('firmalife:pineapple_fiber')
|
.itemInputs('firmalife:pineapple_fiber')
|
||||||
.circuit(1)
|
.circuit(1)
|
||||||
.itemOutputs('8x firmalife:pineapple_yarn')
|
.itemOutputs('8x firmalife:pineapple_yarn')
|
||||||
|
|
|
||||||
|
|
@ -627,6 +627,13 @@ function registerVintageImprovementsRecipes(event) {
|
||||||
processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
|
processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
|
||||||
}).id(`tfg:vi/coiling/phantom_thread`)
|
}).id(`tfg:vi/coiling/phantom_thread`)
|
||||||
|
|
||||||
|
event.custom({
|
||||||
|
type: 'vintageimprovements:coiling',
|
||||||
|
ingredients: [{ item: 'firmalife:pineapple_fiber' }],
|
||||||
|
results: [{ item: 'firmalife:pineapple_yarn', count: 8 }],
|
||||||
|
processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
|
||||||
|
}).id(`tfg:vi/coiling/pineapple_yarn`)
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'vintageimprovements:coiling',
|
type: 'vintageimprovements:coiling',
|
||||||
ingredients: [ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)],
|
ingredients: [ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue