fixed recycling issues from the material rewrite, updated everything to the new recycling helper method
This commit is contained in:
parent
ba38ab65d7
commit
7df74b47b3
11 changed files with 126 additions and 202 deletions
|
|
@ -281,19 +281,7 @@ function registerTFGMoldRecipes(event) {
|
|||
|
||||
global.TFG_EXTRUDER_MOLDS.forEach(mold => {
|
||||
|
||||
event.recipes.gtceu.arc_furnace(`arc_${linuxUnfucker(mold)}`)
|
||||
.itemInputs(mold)
|
||||
.itemOutputs(steelIngots)
|
||||
.duration(224)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
|
||||
event.recipes.gtceu.macerator(`macerate_${linuxUnfucker(mold)}`)
|
||||
.itemInputs(mold)
|
||||
.itemOutputs(steelDusts)
|
||||
.duration(224)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
TFGHelpers.registerMaterialInfo(mold, [GTMaterials.Steel, 4])
|
||||
|
||||
event.recipes.gtceu.forming_press(`copy_shape_${linuxUnfucker(mold)}`)
|
||||
.itemInputs('gtceu:empty_mold')
|
||||
|
|
@ -304,20 +292,8 @@ function registerTFGMoldRecipes(event) {
|
|||
})
|
||||
|
||||
global.TFG_CASTING_MOLDS.forEach(mold => {
|
||||
|
||||
event.recipes.gtceu.arc_furnace(`arc_${linuxUnfucker(mold)}`)
|
||||
.itemInputs(mold)
|
||||
.itemOutputs(steelIngots)
|
||||
.duration(224)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
|
||||
event.recipes.gtceu.macerator(`macerate_${linuxUnfucker(mold)}`)
|
||||
.itemInputs(mold)
|
||||
.itemOutputs(steelDusts)
|
||||
.duration(224)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
|
||||
TFGHelpers.registerMaterialInfo(mold, [GTMaterials.Steel, 4])
|
||||
|
||||
event.recipes.gtceu.forming_press(`copy_shape_${linuxUnfucker(mold)}`)
|
||||
.itemInputs('gtceu:empty_mold')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue