I have items.json file where are storing data about different itemstack (name, metadata, amount, enchants and nbt)
All works nice, but nbt format is not correct:
example: items.json
"name": "groupofitems",
"items": [{
"item": "IC2:itemToolChainsaw",
"metadata": 27,
"amount": 1,
"enchantments": {},
"nbt": {
"charge": 30000.0d
}
}]
//next groups and items....
and result is - {"charge":"30000.0d",} - this is wrong and not working, it have to be {charge:30000.0d}
How to solve this problem?