registerSmeltingPastelHardCandy

fun registerSmeltingPastelHardCandy(exporter: RecipeOutput, smeltableList: List<ItemLike>, outputPastelHardCandyItem: ItemLike, group: String)(source)

Registers a Smelting recipe for Pastel Hard Candy

Example:

class SofterPastelsRecipeProvider(output: FabricDataOutput) : FabricRecipeProvider(output) {
private val WHITE_PASTEL_HARD_CANDY_SMELTABLES: List<ItemLike> = listOf(SofterPastelsItems.WHITE_TAFFY)

override fun buildRecipes(exporter: RecipeOutput) {
registerSmeltingPastelHardCandy(exporter, WHITE_PASTEL_HARD_CANDY_SMELTABLES, SofterPastelsItems.WHITE_HARD_CANDY, "pastel_hard_candy")
}
}

Return

A JSON file provided by your Recipe Provider datagen that has the smelting recipe for making Pastel Hard Candy