#Remove a "Automated Shapeless Crafting" Create mod recipe
6 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
automated is just that, automatic, they don't have recipe ids you can mess with because it's basically just a wrapper to shapeless crafting. You can turn off automatic as a whole in create's config. Other option is to append _manual_only to your shapeless crafting recipe id
How do you set the ID of a recipe in the event.custom way?
event.custom({
type: 'create:crushing',
ingredients: [
Ingredient.of('minecraft:oak_sapling').toJson()
],
results: [
Item.of('minecraft:apple').toResultJson(),
Item.of('minecraft:carrot').withChance(0.5).toResultJson()
],
processingTime: 100
})```
event.custom({json}).id('mod:path')
Thanks a lot!