Fix #195
This commit is contained in:
parent
34020be5e0
commit
550e3984db
1 changed files with 10 additions and 6 deletions
|
|
@ -38,13 +38,17 @@ const registerTFCRecipes = (event) => {
|
|||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 144))
|
||||
.id(`tfc:heating/metal/${material}_ingot`)
|
||||
|
||||
// Отливка слитка в обычной форме
|
||||
event.recipes.tfc.casting(ingotItem, 'tfc:ceramic/ingot_mold', Fluid.of(outputMaterial.getFluid(), 144), 0.1)
|
||||
.id(`tfc:casting/${material}_ingot`)
|
||||
if (material != GTMaterials.WroughtIron) {
|
||||
|
||||
// Отливка слитка в огнеупорной форме
|
||||
event.recipes.tfc.casting(ingotItem, 'tfc:ceramic/fire_ingot_mold', Fluid.of(outputMaterial.getFluid(), 144), 0.01)
|
||||
.id(`tfc:casting/${material}_fire_ingot`)
|
||||
// Отливка слитка в обычной форме
|
||||
event.recipes.tfc.casting(ingotItem, 'tfc:ceramic/ingot_mold', Fluid.of(outputMaterial.getFluid(), 144), 0.1)
|
||||
.id(`tfc:casting/${material}_ingot`)
|
||||
|
||||
// Отливка слитка в огнеупорной форме
|
||||
event.recipes.tfc.casting(ingotItem, 'tfc:ceramic/fire_ingot_mold', Fluid.of(outputMaterial.getFluid(), 144), 0.01)
|
||||
.id(`tfc:casting/${material}_fire_ingot`)
|
||||
|
||||
}
|
||||
|
||||
// Double Ingots
|
||||
let doubleIngotItem = ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue