#processingTime not working for custom recipe

12 messages · Page 1 of 1 (latest)

meager sandal
#

I'm using event.custom to create recipes for Create:Metallurgy, but I've noticed although the recipe is working correctly, processingTime isnt working and casting is instant

pale radishBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

meager sandal
#
//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

coarse sierra
#

procssingTime?

#

missing an e

meager sandal
#

ohhh

#

LMAO

#

I continue to amaze myself lmao

#

thanks for pointing that out