NBT Recipes
VizionG opened this issue ยท 3 comments
I've been trying to understand how the nbt tags work but the items never show in the recipe
[
{
"mode": "ADD",
"result": "[draconicevolution:reactor_core]",
"catalyst": "[draconicevolution:chaotic_core]",
"energy": 1000000,
"tier": 3,
"ingredients": [
"[draconicevolution:draconium_capacitor,1,1,{Energy: 256000000}]"
]
}
]
Its something wrong with the json or is some JEI/Draconic bug?
1 minor mistake. Dont need the square brackets on items anymore.
[
{
"mode": "ADD",
"result": "draconicevolution:reactor_core",
"catalyst": "draconicevolution:chaotic_core",
"energy": 1000000,
"tier": 3,
"ingredients": [
"draconicevolution:draconium_capacitor,1,1,{Energy: 256000000}"
]
}
]