Hey there, having trouble making Ex Nihilo Heat recipes. When doing it through server_scripts it gives me an error, but if I just do a regular datapack json it works fine.
Not Working:
event.custom({
type: 'exnihilosequentia:heat',
block: 'minecraft:blast_furnace',
amount: 10,
state: {
lit: 'true'
}
})
})```
Working:
```{
"type": "exnihilosequentia:heat",
"block": "minecraft:blast_furnace",
"amount": 10,
"state": {
"lit": "true"
}
}```
They're both basically the same recipes, so I'm not sure why it breaks.


