fix #1672
This commit is contained in:
parent
46b6a2da60
commit
7b3f4e8726
3 changed files with 14 additions and 2 deletions
|
|
@ -368,6 +368,15 @@ function registerGTCEUMetalRecipes(event) {
|
|||
.duration(material.getMass())
|
||||
.category(GTRecipeCategories.ORE_CRUSHING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
let tfcName = material.getName();
|
||||
if (material === GTMaterials.Bismuth)
|
||||
tfcName = "bismuthinite";
|
||||
else if (material === GTMaterials.YellowLimonite)
|
||||
tfcName = "limonite";
|
||||
|
||||
event.recipes.tfc.quern(smallDust, smallOre)
|
||||
.id(`tfc:quern/small_${tfcName}`)
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -385,6 +394,9 @@ function registerGTCEUMetalRecipes(event) {
|
|||
.duration(material.getMass())
|
||||
.category(GTRecipeCategories.ORE_CRUSHING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.tfc.quern(smallDust, smallNativeOre)
|
||||
.id(`tfc:quern/small_native_${material.getName()}`)
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue