This commit is contained in:
Pyritie 2025-08-22 21:53:02 +01:00
parent 46b6a2da60
commit 7b3f4e8726
3 changed files with 14 additions and 2 deletions

View file

@ -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()}`)
}
/**