#processingTime not working for custom recipe
12 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
//Steel Ingot
event.custom({
type: 'createmetallurgy:casting_in_table',
ingredients: [
{
item: 'createmetallurgy:graphite_ingot_mold'
},
{
fluid: 'tfmg:molten_steel',
amount: 90
}
],
procssingTime: 80,
results: [
{
item: 'tfmg:steel_ingot',
amount: 1
}
]
}) ```
This is what i've ended up doing for the recipe
I used the following recipe from the mod's jar to create it
"type": "createmetallurgy:casting_in_table",
"ingredients": [
{
"item": "createmetallurgy:graphite_ingot_mold"
},
{
"fluid": "createmetallurgy:molten_steel",
"amount": 90
}
],
"processingTime": 80,
"results": [
{
"item": "createmetallurgy:steel_ingot",
"amount": 1
}
]
}```
I'm not sure if its a limitation with KubeJS or something i'm doing wrong