Hi, I wanted to add the recipe for smelting, but it just doesn't work. I doesn't show in JEI, nor am I able to use it.
I have code in typescript file
ServerEvents.recipes(event => {
event.shaped(
Item.of('xycraft_world:kivi', 3), // arg 1: output
[
'BAB',
'A A', // arg 2: the shape (array of strings)
'BAB'
],
{
A: 'minecraft:obsidian',
B: 'minecraft:stone',
}
)
event.smelting(
'minecraft:prismarine_shard', 'xycraft_world:xychorium_gem_blue'
)
})
