Hi, I'm trying to replace the mod JRFTL mod which lets you smelt and smoke Rotten Flesh into Leather.
I'm trying the following:
ServerEvents.recipes((event) => {
//Rotten Flesh to Leather
event.smelting("minecraft:leather", "minecraft:rotten_flesh");
event.smoking("minecraft:leather", "minecraft:rotten_flesh");
//Magma Rotten Flesh to Leather
event.smelting("minecraft:leather", "rottencreatures:magma_rotten_flesh");
event.smoking("minecraft:leather", "rottencreatures:magma_rotten_flesh");
});
but I only get 1/2 of the smelting recipes and 1/2 of the smoking recipes.
How do I need to do this? Do I combine the input like so [{condition_a: 'true'}, {condition_b: 'true'}] or how should I approach this?