
blockMeta line keeps getting removed
TheDeviantCrafter opened this issue ยท 2 comments
I have the following block in my JSON file:
{
"block": "extrablocks:tfcraw:12",
"size": 1120,
"variation": 50,
"frequency": 80,
"min_height": 4,
"max_height": 48,
"biomes": [
"minecraft:ocean",
"minecraft:deep_ocean"
]
},
If I add a metaData line, so it looks like this:
{
"block": "extrablocks:tfcraw:12",
"blockMeta":1,
"size": 1120,
"variation": 50,
"frequency": 80,
"min_height": 4,
"max_height": 48,
"biomes": [
"minecraft:ocean",
"minecraft:deep_ocean"
]
},
The blockMeta line is removed on startup. If it's relivant, this is my full JSON files: http://hastebin.com/etasonumed.json
Everything else works, until I add that blockMeta line.