Bedrock Ores

Bedrock Ores

241k Downloads

Question: How do I specify meta data values in JSON files?

TheDeviantCrafter opened this issue ยท 2 comments

commented

Specifically, I'd like to add thermalfoundation:ore with a meta data value of 3 to the config in order to disable lead. Is this possible?

commented

Perhaps this will help?

commented

As you probably could have guessed from the link above, you specify those by using their block state properties. To disable TF lead, create a custom ore config JSON with something like this in it, untested:

{
  "state": {
    "name": "thermalfoundation:ore",
    "properties": {
      "type": "lead"
    }
  },
  "enabled": false
}