Fix spared parts molten product inconsistency between GT and TFC
Fix spared parts molten product inconsistency between GT and TFC. Now 1 bolt can get 18mB molten metal, 1 screw can get 16mB molten metal, and 1 ring can get 36mB molten metal, suited with GT. Signed-off-by: EliAyase <chemlzh@pku.edu.cn>
This commit is contained in:
parent
5930ee7a95
commit
5200434e6d
1 changed files with 3 additions and 3 deletions
|
|
@ -502,7 +502,7 @@ const registerTFCRecipes = (event) => {
|
|||
|
||||
// Болт -> Металл
|
||||
event.recipes.tfc.heating(boltItem, tfcProperty.getMeltTemp())
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 36))
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 18))
|
||||
.id(`tfc:heating/metal/${material.getName()}_bolt`)
|
||||
|
||||
// Стержень -> Болт
|
||||
|
|
@ -518,7 +518,7 @@ const registerTFCRecipes = (event) => {
|
|||
|
||||
// Винт -> Металл
|
||||
event.recipes.tfc.heating(screwItem, tfcProperty.getMeltTemp())
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 72))
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 16))
|
||||
.id(`tfc:heating/metal/${material.getName()}_screw`)
|
||||
|
||||
// Стержень -> Винт
|
||||
|
|
@ -533,7 +533,7 @@ const registerTFCRecipes = (event) => {
|
|||
|
||||
// Кольцо -> Металл
|
||||
event.recipes.tfc.heating(ringItem, tfcProperty.getMeltTemp())
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 72))
|
||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 36))
|
||||
.id(`tfc:heating/metal/${material.getName()}_ring`)
|
||||
|
||||
// Стержень -> Кольцо
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue