Fixing block identifiers

This commit is contained in:
DaanV2
2021-06-03 14:07:10 +02:00
parent 00e281e6db
commit 8edda85149
3 changed files with 6 additions and 6 deletions

View File

@@ -44,7 +44,7 @@
"block_types": {
"type": "array",
"description": "List of blocks that can help the transformation of this entity",
"items": { "$ref": "../../../../general/blocks_identifiers.json" }
"items": { "$ref": "../../../../general/block/identifier.json" }
},
"value": { "type": "number", "default": 0, "description": "Time in seconds before the entity transforms" }
}

View File

@@ -45,25 +45,25 @@
"breatheBlocks": {
"type": "array",
"description": "List of blocks this entity can breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" },
"items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title"
},
"breathe_blocks": {
"type": "array",
"description": "List of blocks this entity can breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" },
"items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title"
},
"nonBreatheBlocks": {
"type": "array",
"description": "List of blocks this entity can't breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" },
"items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title"
},
"non_breathe_blocks": {
"type": "array",
"description": "List of blocks this entity can't breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" },
"items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title"
}
}

View File

@@ -3,6 +3,6 @@
"type": "array",
"title": "Particle Expire If Not In Blocks Component For 1.10.0",
"additionalProperties": false,
"items": { "$ref": "../../../../general/blocks_identifiers.json", "description": "TODO description", "title": "TODO Title" },
"items": { "$ref": "../../../../general/block/identifier.json", "description": "TODO description", "title": "TODO Title" },
"description": "TODO description"
}